gild/Makefile
simon a53cbcbde3 Very nearly a useful tool. Still generating zombies, however; much work in
wrapper to get this far, but still no bananas!
1997-10-15 20:16:08 +00:00

29 lines
555 B
Makefile

# Makefile for itinerary engine utilities
# $Header$
CC= gcc
CFLAGS= -g
LD= gcc
LDFLAGS= -g
HOMEDIR= /usr/local/etc/gild
TARGETS= gild
COMPONENTS = gild.o wrapper.o config.o log.o
all: $(TARGETS)
.c.o:
$(CC) $(CFLAGS) -c $<
gild: $(COMPONENTS) gild.h Makefile
$(LD) $(LDFLAGS) -o gild $(COMPONENTS)
clean:
rm core *.o $(TARGETS)
install: $(TARGETS)
install --strip $(TARGETS) gild.conf $(HOMEDIR)
install handlers/* $(HOMEDIR)/handlers
version: $(TARGETS)
cvs commit gild.c wrapper.c config.c log.c Makefile gild.h \
gild.conf handlers