Makefile
275 Bytes
#
# Makefile for texture memory formatting tool
#
include $(ROOT)/usr/include/make/PRdefs
OPTIMIZER = -g
TARGETS=tmemfmt
LCOPTS =-fullwarn
LLDLIBS=-lm
default: $(TARGETS)
include $(COMMONRULES)
tmemfmt: tmemfmt.o
$(CCF) tmemfmt.o $(LDFLAGS) -o $@
install: default