
client identified and passed in environment to handlers; logging through syslogd sorted and working well.
27 lines
482 B
Makefile
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
|