home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 500-599 / ff589.lza / Term / TermSrc.lha / MakeFile < prev    next >
Makefile  |  1991-12-01  |  2KB  |  52 lines

  1. .c.o:
  2.     LC $(CFLAGS) $*.c
  3.  
  4. .asm.o:
  5.     ASM -IASM: $*.asm
  6.  
  7. CFLAGS        = -cmiqws -b1 -r1 -v -j89 -mt0 -O -Hterm.SYM
  8. LFLAGS        = SC SD ND
  9.  
  10. LIBS        = LIB:amiga2.0.lib LIB:lc.lib
  11.  
  12. OBJS        = Beep.o Buffer.o CodeCmp.o Console.o DialPanel.o \
  13.           DPrintf.o EmulationPanel.o FastMacroPanel.o FastMacros.o Format.o \
  14.           HotkeyPanel.o Identify.o MacroPanel.o \
  15.           ModemPanel.o Packet.o ParseCode.o ParseRoutines.o PathPanel.o \
  16.           PhonePanel.o QuickSort.o Res.o SaveILBM.o Scale.o \
  17.           ScreenPanel.o Serial.o SerialPanel.o SpeechPanel.o StringHook.o \
  18.           termAux.o termBuffer.o termClip.o termData.o termHotkeys.o \
  19.           TerminalPanel.o termInfo.o termInit.o termMain.o termPhone.o \
  20.           termRaster.o termRexx.o termSpeech.o termSub.o termTag.o \
  21.           termTransfer.o termXEM.o termXPR.o ToneDial.o TransferPanel.o \
  22.           UploadPanel.o XprGlue.o
  23.  
  24. OBJS1        = Panel.o
  25.  
  26. all:        term.SYM term ColourPatch UpdatePhone UpdateConfig
  27.  
  28. termTag.o:    termTag.asm term.i
  29.         ASM -IASM: termTag.asm
  30.  
  31. GadgetCustom.o:    GadgetCustom.c
  32.         LC -cimqws -b1 -r1 -v -j89 -mt0 -O GadgetCustom.c
  33.  
  34. term:        $(OBJS)
  35. #        BumpRev 1 term
  36.         BLINK WITH term.WITH TO $@ LIB $(LIBS) $(LFLAGS)
  37.  
  38. ColourPatch:    ColourPatch.o
  39.         BLINK ColourPatch.o Format.o termTag.o TO $@ LIB $(LIBS) $(LFLAGS)
  40.  
  41. UpdatePhone:    UpdatePhone.o
  42.         BLINK UpdatePhone.o Format.o termTag.o TO $@ LIB $(LIBS) $(LFLAGS)
  43.  
  44. UpdateConfig:    UpdateConfig.o
  45.         BLINK UpdateConfig.o Format.o termTag.o TO $@ LIB $(LIBS) $(LFLAGS)
  46.  
  47. Panel:        $(OBJS1)
  48.         BLINK LIB:c.o $(OBJS1) Work:term/Format.o TO $@ LIB $(LIBS) $(LFLAGS)
  49.  
  50. term.SYM:    PreInclude.c
  51.         LC -cimqws -ph -oterm.SYM PreInclude.c
  52.