Add makefile

main
Jerry Aldrich 11 years ago
parent c1bd067914
commit dda3e11477
  1. 7
      makefile
  2. 7
      zombies.h

@ -0,0 +1,7 @@
CFLAGS=-I. -lncurses -lm
nZombies:
gcc -o nZombies *.c $(CFLAGS)
clean:
@rm *.o nZombies

@ -0,0 +1,7 @@
#ifndef _ZOMBIES
#define _ZOMBIES
void addZombies();
void moveZombies();
#endif
Loading…
Cancel
Save