Project update

This commit is contained in:
Pierre Pronchery 2004-02-29 02:00:32 +00:00
parent 9db5dc915d
commit 30f6833bee
2 changed files with 25 additions and 1 deletions

View File

@ -1,5 +1,24 @@
all:
TARGETS = configure
CFLAGS = -W -Wall -ansi
CFLAGSF = -g
LDFLAGSF= -lutils
LDFLAGS =
CC = cc
RM = rm -f
all: $(TARGETS)
configure: configure.o
$(CC) $(LDFLAGSF) $(LDFLAGS) -o configure configure.o
configure.o: configure.c
$(CC) $(CFLAGSF) $(CFLAGS) -c configure.c
clean:
$(RM) configure.o
distclean: clean
$(RM) $(TARGETS)

View File

@ -1 +1,6 @@
targets=configure
cflags_force=-W -Wall -ansi
[configure]
type=binary
sources=configure.c