home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 3 / RISC_DISC_3.iso / resources / etexts / gems / gemsiii / alloc / makefile. < prev   
Makefile  |  1992-10-05  |  141b  |  9 lines

  1. # -Aa is HPUX's way of invoking ANSI C
  2. CFLAGS = -g -Aa
  3.  
  4. alloc.o:    alloc.o alloc.h
  5.     cc $(CFLAGS) -c alloc.c -o alloc.o
  6.  
  7. clean:
  8.     rm -rf alloc.o
  9.