#SAS/C smakefile for powerUP (TM) PPC Amiga systems
#(for 68k Amigas, it should suffice to change "CC" and "STARTUP" below)
#written by Andreas R. Kleinert in 1998

CC      = SCPPC
STARTUP = LIB:c_ppc.o
PROG    = /bin/compile
PROG2   = ../bin/compile
OBJS    = compile.o

$(PROG): $(OBJS)

         ppc-amigaos-ld -r $(STARTUP) $(OBJS) LIB:scppc.a lib:end.o -o $(PROG2)
