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