home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 19 / AACD19.BIN / AACD / Programming / LIProgram / SMakeFile < prev   
Encoding:
Makefile  |  2001-02-21  |  1.2 KB  |  40 lines

  1. #
  2. #     MakeFile for CPGM:CPRGM/Tools/Interceptors directory
  3. #
  4. LIBS = LIB:scm.lib,LIB:sc.lib,LIB:Amiga.lib
  5. #
  6. GLOB   = CPGM:GlobalObjects/CommonFuncs.o
  7. #
  8. # C.A.P.E. Assembler options:
  9. #AOPTS = -CLSV -E LIStub.err -L LIStub.list -I INCLUDE:
  10. #
  11. # ------------------------------------------------------------------------
  12. #                       Make stuff for LibraryInterceptor
  13. # ------------------------------------------------------------------------
  14. #
  15. GOPTS = nostkchk data=far streq strmer ign=88,73,100,147 idir=INCLUDE: 
  16. #
  17. # LIStub.o
  18. #
  19. LibraryInterceptor: LibraryInterceptor.o $(GLOB)
  20.   SLink FROM LIB:c.o,$(GLOB),LibraryInterceptor.o TO LibraryInterceptor LIB $(LIBS)
  21. #
  22. # dbg=sym define DEBUG=1
  23. #
  24. LibraryInterceptor.o : LibraryInterceptor.c
  25.   SC $(GOPTS) LibraryInterceptor.c
  26. #
  27. # ---------------------- No longer needed: -------------------------------
  28. #
  29. #LIStub.o : LIStub.a
  30. #  Asm >LIStub.list -l -d -m2 LIStub.a
  31. #
  32. # ---------------------- DEBUG Stuff: ------------------------------------
  33. #
  34. InterceptTest: InterceptTest.o $(GLOB)
  35.   SLink FROM LIB:c.o,$(GLOB),InterceptTest.o TO InterceptTest LIB $(LIBS)
  36. #
  37. InterceptTest.o : InterceptTest.c
  38.   SC dbg=SYMBOL $(GOPTS) InterceptTest.c
  39. #
  40.