summaryrefslogtreecommitdiffstats
path: root/config.mk
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-04-22 20:49:48 +0200
committerMattias Andrée <maandree@kth.se>2021-04-22 20:51:38 +0200
commit77e516665f23b9cb7af864318c61582d91ab5870 (patch)
tree50772907d8d9ce249e47e034455489e22185ac98 /config.mk
downloadbasic-games-77e516665f23b9cb7af864318c61582d91ab5870.tar.gz
basic-games-77e516665f23b9cb7af864318c61582d91ab5870.tar.bz2
basic-games-77e516665f23b9cb7af864318c61582d91ab5870.tar.xz
First commit, with implementation of tic-tac-toe
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.mk b/config.mk
new file mode 100644
index 0000000..0a4122e
--- /dev/null
+++ b/config.mk
@@ -0,0 +1,8 @@
+PREFIX = /usr
+MANPREFIX = $(PREFIX)/share/man
+
+CC = cc
+
+CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_GNU_SOURCE
+CFLAGS = -std=c99 -Wall -Wextra -Os
+LDFLAGS = -lsimple -lterminput -s