home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / grafix / boards / a2410src.lha / Public / Source / smakefile < prev    next >
Encoding:
Makefile  |  1995-02-18  |  977 b   |  30 lines

  1. CFLAGS = libcode nolink nostackcheck nodebug saveds ign=93 ign=304 ign=100 ign=161
  2.  
  3. #libcode :
  4. #---------
  5. all: /libs/gfx.library /Programs/TIGA
  6.  
  7. /libs/gfx.library: gfxentry.o gfx.o CopyP2C.o
  8.     @echo "*e[32mLinking GfxEntry.o Gfx.o CopyP2C.o TO gfx.libray*e[0m"
  9.     @slink libfd gfx_lib.fd TO /libs/gfx.library FROM lib:libent.o lib:libinit.o gfxentry.o gfx.o CopyP2C.o libVersion 0 libRevision 1 LIB lib:amiga.lib+lib:debug.lib
  10.     @echo "*e[32mUpdate libs:gfx.libray...*e[0m"
  11.     @copy /libs/gfx.library libs:
  12.     @avail flush >nil:
  13.  
  14. gfx.o: gfx.c
  15.     @echo "*e[32mCompiling gfx.c*e[0m"
  16.     @sc gfx.c $(CFLAGS)
  17.  
  18. # sorry, this file has my private copyright !
  19. #gfxentry.o: gfxentry.c
  20. #    @echo "*e[32mCompiling GfxEntry.c*e[0m"
  21. #    @sc gfxentry.c $(CFLAGS)
  22.  
  23. CopyP2C.o: CopyP2C.a
  24.     @echo "*e[32mCompiling the assembler Modul*e[0m"
  25.     @sc CopyP2C.a nolink
  26.  
  27. /Programs/TIGA: TIGA.o TIGA.c
  28.     @echo "*e[32mCompiling the TIGA Driver*e[0m"
  29.     @sc TIGA.c link TO /Programs/TIGA
  30.