The format plug-ins need libSystem to compile too

This commit is contained in:
Pierre Pronchery 2011-04-21 00:49:34 +00:00
parent 4e808a815e
commit b2a710ed6f
2 changed files with 4 additions and 4 deletions

View File

@ -5,8 +5,8 @@ LIBDIR = $(PREFIX)/lib
CC = cc
CPPFLAGSF= -I ../../include
CPPFLAGS=
CFLAGSF = -W -Wall -fPIC
CFLAGS = -g
CFLAGSF = -W `pkg-config --cflags libSystem`
CFLAGS = -Wall -g -O2 -fPIC
AR = ar -rc
RANLIB = ranlib
LD = $(CC) -shared

View File

@ -1,7 +1,7 @@
targets=dex,elf,flat,java,pe
cppflags_force=-I ../../include
cflags_force=-W -Wall -fPIC
cflags=-g
cflags_force=-W `pkg-config --cflags libSystem`
cflags=-Wall -g -O2 -fPIC
dist=Makefile
[dex]