Makefile
341 Bytes
#!smake
include $(ROOT)/usr/include/make/PRdefs
OPTIMIZER = -g
TARGETS=acmd
LCOPTS = -mips2 -fullwarn -G 0
LCINCS = -I. -I$(ROOT)/usr/include/PR
LLDLIBS= -L $(ROOT)/usr/lib -L $(ROOT)/usr/lib/PR
OPTIMIZER=-g
default: $(TARGETS)
headers exports:
acmd: acmd.o
$(CCF) acmd.o $(LDFLAGS) -o $@
install: default
include $(COMMONRULES)