home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / hpfslin9.zip / setboot / Makefile < prev    next >
Makefile  |  1993-10-23  |  300b  |  17 lines

  1. CFLAGS = -fomit-frame-pointer -O2
  2. LDFLAGS = -s -N
  3.  
  4. OBJS = set-boot.o
  5.  
  6. set-boot: $(OBJS)
  7.     $(CC) -o set-boot $(LDFLAGS) $(OBJS)
  8.  
  9. install: setboot set-boot
  10.     install -m 700 setboot /usr/bin
  11.     install -m 700 set-boot /usr/bin
  12.  
  13. clean:
  14.     rm -f $(OBJS) set-boot core.*
  15.  
  16. set-boot.o : set-boot.c boot-manager.h 
  17.