diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c1f1b94 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: + g++ -c *.cpp -I/usr/include -O2 -pipe -fomit-frame-pointer -march=core2 + #g++ -c *.cpp -I/usr/include -g3 -ggdb -pipe + g++ -o loader *.o -lboost_thread-mt -lboost_random-mt -lcurl -Wl,-O1 -s + #g++ -o loader *.o -lboost_thread-mt -lboost_random-mt -lcurl +clean: + rm *.o +clean-all: + rm *.o loader + |