8 lines
339 B
Makefile
8 lines
339 B
Makefile
CC = gcc
|
|
CFLAGS = -c `/opt/php-embed/bin/php-config --includes` -Wall -g
|
|
|
|
LDFLAGS = -L/Library/Frameworks/Firebird.framework/Libraries -L/opt/php-embed/lib -lphp5 `/opt/php-embed/bin/php-config --libs`
|
|
|
|
all: OpenSQLManager.c
|
|
${CC} -O0 -o OpenSQLManager.o OpenSQLManager.c ${CFLAGS}
|
|
${CC} -O0 -o OpenSQLManager OpenSQLManager.o ${LDFLAGS}
|