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 | |
parent | 905e3fef88682aa74e0f3fc7ad3201907725e4b9 (diff) | |
download | NetNuke-ce8f41c0d1f56169dc19696b6baf77307748d0b0.tar.gz |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4b9be8a --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +CFLAGS=-Wall -pipe -O2 -funroll-loops +OUTPUT=netnuke + +all: + gcc -o ${OUTPUT} -lutil ${CFLAGS} netnuke.c + |