# # Makefile # # © 1998 Straylight/Edgeware # #----- Licensing note ------------------------------------------------------- # # This makefile is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This makefile is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this makefile. If not, write to the Free Software Foundation, # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #----- Compilation flags ---------------------------------------------------- # --- Uncomment to use the C4 tools --- # OLD = o- # --- C compilation --- CC = $(OLD)cc -c -o $@ CFLAGS = -depend !Depend -throwback -ffah -Ilibs: -IC: COMPILE = $(CC) $(CFLAGS) # --- Assembling --- AS = $(OLD)objasm -quit -to $@ ASFLAGS = -stamp -depend !Depend -throwback ASSEMBLE = $(AS) $(ASFLAGS) -from BAS = basasm # --- Linking --- LD = $(OLD)link -o $@ LD_APP = $(LD) -aif LD_UTIL = $(LD) -bin -base 0 LD_MOD = $(LD) -bin -base 0 LD_BIN = $(LD) -bin -base 0 LD_DLL = $(LD) -rmf LD_AOF = $(LD) -aof # --- Making libraries --- AR = $(OLD)libfile -o CDLL = cdll # --- Setting file types --- SET_APP = SetType $@ FF8 SET_MOD = SetType $@ FFA SET_UTIL = SetType $@ FFC SET_DLL = SetType $@ FFD # --- Other maintenance things --- RM = ssrclean INSTALL = inst SETDATE = setdate SQUEEZE = squeeze $@ DATE = %zdy %mo %ce%yr MODDATE = %dy %m3 %ce%yr CRIGHT = © %ce%yr Straylight FIXLINK = fixlink $@ #----- Default rules -------------------------------------------------------- .SUFFIXES: .o .c .s .bs .c.o: $(COMPILE) $< .s.o: $(ASSEMBLE) $< .bs.o: $(BAS) $< $@ #----- Object files --------------------------------------------------------- OBJS = \ o.hammer o.driver \ o.armEmul o.asm o.brkpt o.diss VERSION = 1.00 #----- Compiling things ----------------------------------------------------- all: Hammer LIBS = libs:o.quartz Hammer: $(OBJS) $(LIBS) $(SETDATE) \ o.version \ quartz_help="Sledgehammer\t$(VERSION) ($(MODDATE)) $(CRIGHT)" $(LD_MOD) $(OBJS) $(LIBS) o.version $(SET_MOD) install: Hammer $(INSTALL) Hammer clean: -$(RM) o.* Hammer #----- Dynamic dependencies ------------------------------------------------- # Dynamic dependencies: o.hammer: s.hammer o.hammer: libs:header o.hammer: libs:swis o.hammer: quartz:quartz o.hammer: sh.armEmul o.hammer: sh.asm o.hammer: sh.diss o.hammer: sh.brkpt o.hammer: s.hammer o.hammer: libs:header o.hammer: libs:swis o.hammer: quartz:quartz o.hammer: sh.armEmul o.hammer: sh.asm o.hammer: sh.diss o.hammer: sh.brkpt o.driver: s.driver o.driver: libs:header o.driver: libs:swis o.driver: libs:stream o.driver: quartz:string o.driver: sh.brkpt o.driver: sh.armEmul o.driver: sh.asm o.driver: sh.diss o.driver: sh.hammer o.armEmul: s.armEmul o.armEmul: libs:header o.armEmul: libs:swis o.armEmul: libs:stream o.armEmul: sh.brkpt o.armEmul: sh.diss o.asm: s.asm o.asm: libs:header o.asm: libs:swis o.asm: libs:stream o.asm: quartz:string o.asm: sh.diss o.brkpt: s.brkpt o.brkpt: libs:header o.brkpt: libs:swis o.brkpt: libs:stream o.brkpt: sh.armEmul o.brkpt: sh.driver o.brkpt: sh.hammer o.diss: s.diss o.diss: libs:header o.diss: libs:swis o.diss: libs:stream o.diss: quartz:quartz o.diss: quartz:string