gild/Makefile
simon f54afde746 Significantly improved; wrapper processes given configurable 'die' timeouts;
client identified and passed in environment to handlers;
logging through syslogd sorted and working well.
1997-10-15 16:48:54 +00:00

27 lines
482 B
Makefile

# Makefile for itinerary engine utilities
# $Header$
CC= gcc
CFLAGS= -g
LD= gcc
LDFLAGS= -g
BINDIR= /usr/local/bin
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) $(BINDIR)
version: $(TARGETS)
cvs commit gild.c wrapper.c config.c log.c Makefile gild.h gild.conf