diff options
author | Nick White <git@njw.me.uk> | 2010-06-25 18:58:44 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2010-06-25 18:58:44 +0100 |
commit | b3fd93d1d59d22489de2a88c3e0a9373fb3a1569 (patch) | |
tree | 5ef03eb201d6791d2924f65966a7bef93daf6dfb /config.mk | |
parent | 7d4ad5e47d8cdc8b9ef10f9a994d8682e14d3cdd (diff) |
Fix initialisation bug, clean Makefile
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,6 +3,7 @@ VERSION = 0.2 # paths +#PREFIX = /usr/local PREFIX = /usr/local MANPREFIX = ${PREFIX}/share/man @@ -16,7 +17,6 @@ XMLINC = $(shell pkg-config --cflags libxml-2.0) XMLLIB = $(shell pkg-config --libs libxml-2.0) # flags -#CFLAGS = -pedantic -Wall -Werror ${INCS} ${CURLINC} ${XMLINC} -DVERSION=\"${VERSION}\" CFLAGS = -std=c99 -Wall -Werror ${INCS} ${CURLINC} ${XMLINC} -DVERSION=\"${VERSION}\" LDFLAGS = ${LIBS} ${CURLLIB} ${XMLLIB} |