home *** CD-ROM | disk | FTP | other *** search
Makefile | 1987-02-11 | 298 b | 15 lines |
- # Makefile for hier(1), needed to link with sftw().
- # This is for BSD sites. mirror!rs
-
- CFLAGS = -O -DBSD -I. -Dstrrchr=rindex
- GETOPT=-lgetopt
-
- hier: hier.c sftw.o
- cc $(CFLAGS) -s -o hier hier.c sftw.o $(GETOPT)
-
- test: sftw.c
- cc $(CFLAGS) -DTEST -o sftw sftw.c
-
- clean:
- rm -f *.o hier sftw core
-