home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Resources / System / BoingBag1 / Contributions / Workbench / StR / WBStartEmu / src / makefile < prev   
Makefile  |  1999-10-26  |  409b  |  21 lines

  1. #
  2. # Makefile for wbstart.library emulation !
  3. #
  4.  
  5. CC        = gcc
  6. CFLAGS        = -mrtd -m68020-60 -O2 -fomit-frame-pointer -msmall-code -mregparm=3 -c
  7. LDFLAGS        = -nostartfiles -noixemul -nostdlib
  8. LDLIBS        =
  9. PHXASSOPTS    = NOEXE OPT 3
  10. OBJS        = library.o
  11.  
  12. wbstart.library:    $(OBJS)
  13.         $(CC) $(LDFLAGS) -o LIBS:$@ $(OBJS) $(LDLIBS)
  14.         -ShortRel LIBS:$@
  15.  
  16. library.o:    library.c library.h
  17.         $(CC) $(CFLAGS) $<
  18.  
  19. clean:
  20.         -Delete $(OBJS)
  21.