diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2009-09-08 19:02:23 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2009-09-08 19:02:23 -0400 |
commit | ce8f41c0d1f56169dc19696b6baf77307748d0b0 (patch) | |
tree | 3f64426a907895312d65b1c8b2e44a9d6e5ac91d /Makefile.linux | |
parent | 905e3fef88682aa74e0f3fc7ad3201907725e4b9 (diff) | |
download | NetNuke-ce8f41c0d1f56169dc19696b6baf77307748d0b0.tar.gz |
Diffstat (limited to 'Makefile.linux')
-rw-r--r-- | Makefile.linux | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.linux b/Makefile.linux new file mode 100644 index 0000000..6f53f9c --- /dev/null +++ b/Makefile.linux @@ -0,0 +1,6 @@ +CFLAGS=-Wall -pipe -O2 -funroll-loops +OUTPUT=netnuke + +all: + gcc -o ${OUTPUT} -lutil ${CFLAGS} netnuke.c human_readable.c + |