mirror of
https://frontier.innolan.net/rainlance/amiga-tz.git
synced 2025-12-07 01:44:48 +00:00
54 lines
1.0 KiB
Makefile
54 lines
1.0 KiB
Makefile
# %W%
|
|
|
|
# Use an absolute path name for TZDIR unless you're just testing the software.
|
|
|
|
TZDIR= /usr/local/lib/tzdir
|
|
DEBUG=
|
|
LINTFLAGS= -phbaaxc
|
|
LFLAGS=
|
|
CFLAGS= $(DEBUG) -O -DOBJECTID -DTZDIR=\"$(TZDIR)\"
|
|
|
|
TZCSRCS= tzcomp.c scheck.c strchr.c
|
|
TZCOBJS= tzcomp.o scheck.o strchr.o
|
|
TZDSRCS= tzdump.c settz.c
|
|
TZDOBJS= tzdump.o settz.o
|
|
ENCHILADA= Makefile tzfile.h $(TZCSRCS) $(TZDSRCS) tzinfo years.sh
|
|
|
|
all: REDID_BINARIES tzdump
|
|
|
|
REDID_BINARIES: $(TZDIR) tzcomp tzinfo years
|
|
tzcomp -d $(TZDIR) tzinfo
|
|
cp /dev/null $@
|
|
|
|
tzdump: $(TZDOBJS)
|
|
$(CC) $(LFLAGS) $(TZDOBJS) $(LIBS) -o $@
|
|
|
|
tzcomp: $(TZCOBJS)
|
|
$(CC) $(LFLAGS) $(TZCOBJS) $(LIBS) -o $@
|
|
|
|
$(TZDIR):
|
|
mkdir $@
|
|
|
|
years: years.sh
|
|
rm -f $@
|
|
cp $? $@
|
|
chmod 555 $@
|
|
|
|
bundle: $(ENCHILADA)
|
|
bundle $(ENCHILADA) > bundle
|
|
|
|
$(ENCHILADA):
|
|
sccs get $(REL) $(REV) $@
|
|
|
|
sure: $(TZCSRCS) $(TZDSRCS)
|
|
lint $(LINTFLAGS) $(TZCSRCS)
|
|
lint $(LINTFLAGS) $(TZDSRCS)
|
|
|
|
clean:
|
|
rm -f core *.o *.out REDID_BINARIES years tzdump tzcomp bundle \#*
|
|
|
|
CLEAN: clean
|
|
sccs clean
|
|
|
|
tzdump.o tzcomp.o settz.o: tzfile.h
|