diff options
| author | Franklin Wei <franklin@fwei.tk> | 2014-06-21 20:41:04 -0400 |
|---|---|---|
| committer | Franklin Wei <franklin@fwei.tk> | 2014-06-21 20:41:04 -0400 |
| commit | 1640071ca70d0c443743f5c9ebb3511e7885a497 (patch) | |
| tree | fb77883e5ef4384a8e225dcbddccdc999f918900 /Makefile | |
| download | wargames-server-1640071ca70d0c443743f5c9ebb3511e7885a497.zip wargames-server-1640071ca70d0c443743f5c9ebb3511e7885a497.tar.gz wargames-server-1640071ca70d0c443743f5c9ebb3511e7885a497.tar.bz2 wargames-server-1640071ca70d0c443743f5c9ebb3511e7885a497.tar.xz | |
Inital commit
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b021949 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +SOURCES=joshua.o main.o +CXXFLAGS=-I. -lncurses +CFLAGS=-I. -std=gnu99 +all: $(SOURCES) + g++ $(SOURCES) -lncurses |