diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2010-11-30 09:26:07 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2010-11-30 09:26:07 -0500 |
commit | 1e0dccae06eee40d62f8e80a22f3ff29a6f22449 (patch) | |
tree | 7c228946918a0d4ceb6d44898c607b893ec6589b /Makefile | |
parent | c8f66924b60174f70615bce47d2382d284c944e7 (diff) | |
download | NetNuke2-1e0dccae06eee40d62f8e80a22f3ff29a6f22449.tar.gz |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..af12fca --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +CFLAGS=-Wall -O2 -s +LDFLAGS=-lpthread +OBJS= \ + bus.c \ + netnuke.c \ + nukectl.c \ + output_redirect.c + +all: + cc ${CFLAGS} ${LDFLAGS} -o netnuke ${OBJS} + du -sh netnuke +clean: + rm -rf netnuke |