Makefile
512 Bytes
#!smake
#
# Makefile for apps intended to run on unix, related to simos
#
#
CCOM = /usr/bin/cc
DEFS =
#OPTS = -O2 -g3
OPTS = -g
LOPTS = -fullwarn -wlint,-uiv -woff 826,827,852 -DSIM_ALPHA
INCS = -I../../../common/misc -I../../../cpus/shared/
.c.o:
$(CCOM) $(DEFS) $(OPTS) $(LOPTS) $(INCS) -c $<
all: msdump
msdump: msdump.o memstatdump.o
$(CCOM) $(OPTS) -o msdump msdump.o memstatdump.o
msdiff: msdiff.o memstatdump.o
$(CCOM) $(OPTS) -o msdiff msdiff.o memstatdump.o
clean:
rm *.o