From dda3e11477a2455fc09e5c5da098616c270565d7 Mon Sep 17 00:00:00 2001 From: Jerry Aldrich Date: Sun, 5 Apr 2015 18:57:15 -0500 Subject: [PATCH] Add makefile --- makefile | 7 +++++++ zombies.h | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 makefile create mode 100644 zombies.h diff --git a/makefile b/makefile new file mode 100644 index 0000000..a348a53 --- /dev/null +++ b/makefile @@ -0,0 +1,7 @@ +CFLAGS=-I. -lncurses -lm + +nZombies: + gcc -o nZombies *.c $(CFLAGS) + +clean: + @rm *.o nZombies diff --git a/zombies.h b/zombies.h new file mode 100644 index 0000000..6a0c1e8 --- /dev/null +++ b/zombies.h @@ -0,0 +1,7 @@ +#ifndef _ZOMBIES +#define _ZOMBIES + +void addZombies(); +void moveZombies(); + +#endif