home *** CD-ROM | disk | FTP | other *** search
-
-
- Librarys = \
- C:o.Stubs \
-
- Target = !RunImage
-
- ASMFlags = $(ASMExtra) -Stamp -NoCache -CloseExec -Quit -throwback
- CCFlags = $(CCExtra) -fahi -depend !Depend -throwback -I,C:
- CPPFlags = $(CPPExtra) -depend !Depend -throwback -I,C:
- LinkFlags = $(LinkExtra)
-
- ASM = objasm $(ASMFlags)
- CC = cc -c $(CCFlags)
- CPP = c++ -c $(CPPFlags)
- LINK = Link -aif -c++ $(LinkFlags)
-
-
-
- # Don't alter anything below this...
-
-
- .SUFFIXES: .o .s .c .c++
-
- $(Target): $(ObjectFiles) $(Librarys)
- $(LINK) -o $@ $(ObjectFiles) $(Librarys)
-
- .s.o:
- $(ASM) -from $< -to $@
-
- .c.o:
- $(CC) -o $@ $<
-
- .c++.o:
- $(CPP) -o $@ $<
-
-
- # Dynamic dependencies:
-