diff options
author | sin <sin@2f30.org> | 2014-09-13 23:46:34 +0100 |
---|---|---|
committer | sin <sin@2f30.org> | 2014-09-13 23:46:34 +0100 |
commit | 9c28246716a1ab4d73e312b7f009cc0cd96a3268 (patch) | |
tree | c26334151712525562285c449e26b8c03b9b5f43 /config.mk | |
parent | 43513cf6c68a4cb73117b2a2ff71f7499f5feb89 (diff) |
Add Makefile + config.mk + config.def.h
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..050dade --- /dev/null +++ b/config.mk @@ -0,0 +1,12 @@ +# ratatox version +VERSION = 0.0 + +# paths +PREFIX = /usr/local +MANPREFIX = $(PREFIX)/share/man + +CC = cc +LD = $(CC) +CPPFLAGS = +CFLAGS = -I/usr/local/include $(CPPFLAGS) +LDFLAGS = -L/usr/local/lib -ltoxcore |