Makefile
changeset 83 94945f1c7326
parent 79 f99c2548fac4
child 85 36bec04b8afd
--- a/Makefile	Tue Apr 03 23:50:59 2007 +0200
+++ b/Makefile	Tue Apr 03 23:53:06 2007 +0200
@@ -13,6 +13,9 @@
 	mail.o
 INSTALL=/usr/bin/install -c
 
+ts: $(OBJECTS)
+	gcc -o ts $^
+
 # Dependencies
 main.o: main.c main.h
 server_start.o: server_start.c main.h
@@ -25,9 +28,6 @@
 client_run.o: client_run.c main.h
 mail.o: mail.c main.h
 
-ts: $(OBJECTS)
-	gcc -o ts $^
-
 clean:
 	rm -f *.o ts