home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-11-25 | 340 b | 17 lines |
- CC= /bin/cc
- DEST= /usr/local/bin
- MANDIR= /usr/man/manl
- PSTEXT_SRC= pstext.c
- PSTEXT_OBJ= pstext.o
-
- all: pstext
-
- pstext: $(PSTEXT_OBJ)
- $(CC) -O -o pstext $(PSTEXT_OBJ)
-
- install: pstext
- install -c -m 755 -o bin -g bin pstext $(DEST)
- install -c -m 755 -o bin -g bin pstext.1 $(MANDIR)/pstext.l
- clean:
- rm -f $(PSTEXT_OBJ) pstext a.out core
-