GNUmakefile
324 Bytes
#
# Makefile for texture memory formatting tool
#
include $(ROOT)/usr/include/make/PRdefs
CC=$(HOST_CC)
GCINCS=-I$(ROOT)/host_include
GLDOPTS=
OPTIMIZER = -g
TARGETS=tmemfmt
LCOPTS =-Wall
LLDLIBS=-lm
default: $(TARGETS)
include $(COMMONRULES)
tmemfmt: tmemfmt.o
$(CCF) tmemfmt.o $(LDFLAGS) -o $@
install: default