home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume11 / hd_pjr / part01 / Makefile < prev    next >
Encoding:
Makefile  |  1990-03-25  |  389 b   |  20 lines

  1. HOME=/b2/pjr
  2. CC=cc
  3. SRC=.
  4. CFLAGS=-c -DH_OFFSETS -DH_COMPRESS
  5. CFILES=hd.c hexprint.c
  6. OBJ=hd.o hexprint.o
  7.  
  8. hd:    $(OBJ)
  9.     $(CC) $(OBJ) -o hd
  10.  
  11. inst:    hd
  12.     cp hd $(HOME)/bin
  13.  
  14. hd.o:        hd.c /usr/include/stdio.h /usr/include/sys/types.h\
  15.         /usr/include/sys/file.h /usr/include/sys/fcntl.h\
  16.         /usr/include/fcntl.h /usr/include/string.h hexprint.h
  17.  
  18. hexprint.o:    hexprint.c /usr/include/stdio.h hexprint.h
  19.  
  20.