diff options
| author | gottox@rootkit.lan <gottox@rootkit.lan> | 2007-12-10 12:43:27 +0100 |
|---|---|---|
| committer | gottox@rootkit.lan <gottox@rootkit.lan> | 2007-12-10 12:43:27 +0100 |
| commit | c40dc50ec04d88624e1d57e52821b4dd22870dca (patch) | |
| tree | b40fb69d71b0e8fc84e56ff60d1668b8efbaf851 /config.mk | |
| parent | b65bc6d92bc260d97747d5423c2936f80bab1628 (diff) | |
Adding Makefile, changing to MIT/X License
Diffstat (limited to 'config.mk')
| -rw-r--r-- | config.mk | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..3b54689 --- /dev/null +++ b/config.mk @@ -0,0 +1,17 @@ +# cmarkdown version +VERSION = 0.1 + +# paths +PREFIX = /usr/local +MANPREFIX = ${PREFIX}/share/man + +# includes and libs +INCS = -I. -I/usr/include +LIBS = -L/usr/lib + +# flags +CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" +LDFLAGS = -s ${LIBS} + +# compiler +CC = cc |