mpw/test/makefile

54 lines
1.0 KiB
Makefile
Raw Normal View History

2015-01-15 21:39:10 +00:00
# ignore built-in rules, don't delete intermediate .o files.
MAKEFLAGS += --no-builtin-rules
.SUFFIXES:
.SECONDARY:
2015-01-20 18:58:24 +00:00
MPW ?= mpw
2015-01-13 21:59:43 +00:00
LIBS = \
{Libraries}Stubs.o \
{CLibraries}StdCLib.o \
{Libraries}Interface.o \
{Libraries}Runtime.o \
{Libraries}ToolLibs.o
PPC_LIBS = {SharedLibraries}InterfaceLib \
{SharedLibraries}StdCLib \
{PPCLibraries}StdCRuntime.o \
{PPCLibraries}PPCCRuntime.o
LDFLAGS = -w -c 'MPS ' -t MPST \
-sn STDIO=Main -sn INTENV=Main -sn %A5Init=Main
SCFLAGS = -p
2015-01-23 15:26:40 +00:00
TARGETS = test_new_handle test_new_handle_2 test_new_pointer test_volumes \
test_createresfile test_hwpriv
2015-01-13 21:59:43 +00:00
all : $(TARGETS)
clean :
rm -f $(TARGETS) o/*
2015-01-15 21:39:10 +00:00
# test_new_handle : o/test_new_handle.o
# mpw Link $(LDFLAGS) -o $@ $^ $(LIBS)
2015-01-13 21:59:43 +00:00
2015-01-15 21:39:10 +00:00
# test_new_handle_2 : o/test_new_handle_2.o
# mpw Link $(LDFLAGS) -o $@ $^ $(LIBS)
2015-01-13 21:59:43 +00:00
2015-01-15 21:39:10 +00:00
# test_new_pointer : o/test_new_pointer.o
# mpw Link $(LDFLAGS) -o $@ $^ $(LIBS)
2015-01-13 21:59:43 +00:00
2015-01-15 21:39:10 +00:00
# test_volumes : o/test_volumes.o
2015-01-13 21:59:43 +00:00
# mpw Link $(LDFLAGS) -o $@ $^ $(LIBS)
2015-01-15 21:39:10 +00:00
% : o/%.o
2015-01-20 18:58:24 +00:00
$(MPW) Link $(LDFLAGS) -o $@ $^ $(LIBS)
2015-01-15 21:39:10 +00:00
2015-01-13 21:59:43 +00:00
o/%.o : %.c
2015-01-20 18:58:24 +00:00
$(MPW) SC $(SCFLAGS) $< -o $@
2015-01-13 21:59:43 +00:00