diff options
author | FRIGN <dev@frign.de> | 2016-01-05 16:56:47 +0100 |
---|---|---|
committer | FRIGN <dev@frign.de> | 2016-01-05 16:56:47 +0100 |
commit | a7dba356ecad56b84c06fc12f537682feff61232 (patch) | |
tree | c6585dc5ac9470b41c43e5da8e83b66220146146 /config.mk | |
parent | 24c4b045fc495becc9ba4239ba3d2963851c7634 (diff) |
Fix Makefile+config.mk
I forgot that we can't just cd. It has to be a &&-statement.
Also, uncomplicate the output.
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -2,15 +2,16 @@ # paths PREFIX = /usr/local +MANPREFIX = $(PREFIX)/share/man PNGLIB = /usr/local/lib PNGINC = /usr/local/include -JPEGLIB = /usr/local/lib -JPEGINC = /usr/local/include +JPGLIB = /usr/local/lib +JPGINC = /usr/local/include -INCS = -I${PNGINC} -I${JPEGINC} -LIBS = -L${PNGLIB} -L${JPEGLIB} -lpng -ljpeg +INCS = -I${PNGINC} -I${JPGINC} +LIBS = -L${PNGLIB} -L${JPGLIB} -lpng -ljpeg # flags CPPFLAGS = -D_DEFAULT_SOURCE |