home *** CD-ROM | disk | FTP | other *** search
Makefile | 1987-10-03 | 678 b | 24 lines |
- SRCDIR = /system/util/monthtool
- INSTALLDIR = /usr/local/bin
- MANDIR = /usr/local/man/man1
- LIBS = -lm -lsuntool -lsunwindow -lpixrect
- CFLAGS = -O
- PROG = monthtool
- MAN = monthtool.1
-
- monthtool: monthtool.font monthtool.o
- cc -o $(PROG) monthtool.o $(LIBS)
-
- monthtool.o: monthtool.c monthtool.h
- cc $(CFLAGS) -DFONTDIR="\"$(SRCDIR)\"" -c monthtool.c
-
- monthtool.font: monthtool.font.uu
- uudecode monthtool.font.uu
-
- install: $(PROG) $(MAN)
- install -s -m 555 $(PROG) $(INSTALLDIR)
- install -c -m 644 monthtool.1 $(MANDIR)
-
- clean:
- rm -f monthtool.o $(PROG) core monthtool.font.uu
-