Fixed a wrong makefile. Stupid me. v0.3.1-2
authorviric@llimona
Tue, 03 Apr 2007 23:53:06 +0200
changeset 83 94945f1c7326
parent 82 a5f0c57a50bd
child 84 65c7575e61f7
Fixed a wrong makefile. Stupid me.
Makefile
--- 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