Give "tools/config" more chances to compile

This commit is contained in:
Pierre Pronchery 2014-05-09 03:12:43 +02:00
parent 128f6b2542
commit 3658a6887d
2 changed files with 5 additions and 3 deletions

View File

@ -4,11 +4,11 @@ DESTDIR =
BINDIR = $(PREFIX)/bin
SBINDIR = $(PREFIX)/sbin
CC = cc
CPPFLAGSF=
CPPFLAGSF= -I ../include
CPPFLAGS=
CFLAGSF = -W
CFLAGS = -Wall -g -O2 -pedantic
LDFLAGSF= -Wl,-rpath,$(PREFIX)/lib -L../src -lSystem
LDFLAGSF= -L../src -Wl,-rpath,$(PREFIX)/lib -lSystem
RM = rm -f
LN = ln -f
MKDIR = mkdir -m 0755 -p

View File

@ -1,7 +1,9 @@
targets=config
cppflags_force=-I ../include
cppflags=
cflags_force=-W
cflags=-Wall -g -O2 -pedantic
ldflags_force=-Wl,-rpath,$(PREFIX)/lib -L../src -lSystem
ldflags_force=-L../src -Wl,-rpath,$(PREFIX)/lib -lSystem
dist=Makefile
[config]