home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / binutils-1.8.x.tar.gz / binutils-1.8.x.tar / binutils / hp-bin / Makefile < prev    next >
Makefile  |  1989-01-03  |  251b  |  16 lines

  1. CFLAGS = -O -I../hp-include
  2. EXECUTABLES = hpxt chatr
  3.  
  4. all : $(EXECUTABLES)
  5.  
  6. clean :
  7.     rm -f *.o $(EXECUTABLES)
  8.  
  9. hpxt : hpxt.o ioutil.o
  10.     $(CC) -o hpxt hpxt.o ioutil.o
  11.  
  12. chatr : chatr.o ioutil.o
  13.     $(CC) -o chatr chatr.o ioutil.o
  14.  
  15. hpxt.o chatr.o : ioutil.h
  16.