home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-03-25 | 389 b | 20 lines |
- HOME=/b2/pjr
- CC=cc
- SRC=.
- CFLAGS=-c -DH_OFFSETS -DH_COMPRESS
- CFILES=hd.c hexprint.c
- OBJ=hd.o hexprint.o
-
- hd: $(OBJ)
- $(CC) $(OBJ) -o hd
-
- inst: hd
- cp hd $(HOME)/bin
-
- hd.o: hd.c /usr/include/stdio.h /usr/include/sys/types.h\
- /usr/include/sys/file.h /usr/include/sys/fcntl.h\
- /usr/include/fcntl.h /usr/include/string.h hexprint.h
-
- hexprint.o: hexprint.c /usr/include/stdio.h hexprint.h
-
-