home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / disks / disk375.lzh / ParM / makefile < prev    next >
Makefile  |  1989-06-06  |  236b  |  16 lines

  1.  
  2. CFLAGS=-qf -ps -wp -wd -wu -so -hi ram:small.pre
  3.  
  4. .c.o:
  5.     cc $(CFLAGS) $*.c
  6.  
  7. OBJS1=Menus.o Global.o Command.o
  8. OBJS2=ParM.o MenuAlloc.o Parse.o Run.o
  9.  
  10. OBJS=$(OBJS1) $(OBJS2)
  11.  
  12. ParM: $(OBJS)
  13.     ln -o ParM $(OBJS) -la -lc16
  14.  
  15. $(OBJS2): ParM.h
  16.