Ported SORT command form FreeDOS
[reactos.git] / rosapps / cmdutils / makefile
index 5e7f92a..4b34304 100644 (file)
@@ -4,7 +4,7 @@
 
 PATH_TO_TOP=..
 
-TARGET=more.exe tee.exe y.exe
+TARGET=more.exe sort.exe tee.exe y.exe
 
 all: $(TARGET)
 
@@ -15,6 +15,10 @@ more.exe: more.o more.coff
        $(CC) more.o -lkernel32 -lmsvcrt -o more.exe more.coff
        $(NM) --numeric-sort more.exe > more.sym
 
+sort.exe: sort.o sort.coff
+       $(CC) sort.o -lkernel32 -lmsvcrt -o sort.exe sort.coff
+       $(NM) --numeric-sort sort.exe > sort.sym
+
 tee.exe: tee.o tee.coff
        $(CC) tee.o -lkernel32 -lmsvcrt -o tee.exe tee.coff
        $(NM) --numeric-sort tee.exe > tee.sym