New configure

This commit is contained in:
Pierre Pronchery 2005-10-23 20:37:12 +00:00
parent b8cc8e7af9
commit 3d9bfad007

View File

@ -1,25 +1,21 @@
TARGETS = configure
CC = cc
CFLAGSF = -W -Wall -ansi -I /System/Include
CFLAGS = -g
LDFLAGSF= -L /System/Libraries -l System -l dl
CC = cc
AR = ar rc
RANLIB = ranlib
LD = ld -shared
RM = rm -f
all: $(TARGETS)
configure_OBJS= configure.o
configure_CFLAGS=$(CFLAGSF) $(CFLAGS)
configure_OBJS = configure.o
configure_CFLAGS = $(CFLAGSF) $(CFLAGS)
configure: $(configure_OBJS)
$(CC) $(LDFLAGSF) $(LDFLAGS) -o configure $(configure_OBJS)
configure.o: configure.c
$(CC) $(configure_CFLAGS) -c configure.c
clean:
$(RM) $(configure_OBJS)