diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-02-28 16:00:51 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-02-28 16:00:51 +0100 |
commit | 511a0a0273276a41b73c45a2470ad872fdde1381 (patch) | |
tree | 541c13f8c204abea02d604d97c0e68957d30dcb2 /src/Makefile | |
parent | 00eb456826d3e76cc22505f21e9ad5cdd95d1e62 (diff) | |
download | fastd-511a0a0273276a41b73c45a2470ad872fdde1381.tar fastd-511a0a0273276a41b73c45a2470ad872fdde1381.zip |
Migrate to CMake
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index e36757e..0000000 --- a/src/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -all : fastd - -fastd : fastd.o method_null.o task.o handshake.o queue.o - $(CC) -o $@ $^ -lrt - -fastd.o : fastd.c fastd.h task.h queue.h handshake.h -handshake.o : handshake.c packet.h handshake.h queue.h -method_null.o : method_null.c fastd.h task.h queue.h -task.o : task.c task.h queue.h -queue.o : queue.c queue.h - -clean : - rm -f fastd fastd.o handshake.o method_null.o task.o queue.o |