diff options
author | Bert Münnich <be.muennich@gmail.com> | 2013-01-12 23:39:59 +0100 |
---|---|---|
committer | Bert Münnich <be.muennich@gmail.com> | 2013-01-12 23:39:59 +0100 |
commit | 385ba28fd78a5e1454d46a09a05b8d10ef8e0c6f (patch) | |
tree | 1e8bc6961fb8ce523cb0d6db2dbc3f1e61dfdef8 /Makefile | |
parent | ec7382702ac7443bc6428a2d3329b2e9ceefb205 (diff) |
Fixed completely insane {C,LD}FLAGS -I/-L settings
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,11 +1,11 @@ -VERSION = git-20130110 +VERSION = git-20130112 PREFIX = /usr/local MANPREFIX = $(PREFIX)/share/man CC = gcc -CFLAGS = -Wall -pedantic -O2 -I$(PREFIX) -DHAVE_GIFLIB -LDFLAGS = -L$(PREFIX) +CFLAGS = -Wall -pedantic -O2 -I$(PREFIX)/include -DHAVE_GIFLIB +LDFLAGS = -L$(PREFIX)/lib LIBS = -lX11 -lImlib2 -lgif SRC = commands.c exif.c image.c main.c options.c thumbs.c util.c window.c |