15 lines
261 B
Makefile
15 lines
261 B
Makefile
include $(ROOT)/usr/include/make/commondefs
|
|
|
|
TARGETS=flashbuild
|
|
|
|
LCDEFS=-D_KMEMUSER
|
|
|
|
default: $(TARGETS)
|
|
|
|
include $(COMMONRULES)
|
|
|
|
flashbuild: flashbuild.o flashcommon.o flashcommon.h
|
|
$(CCF) $(LDFLAGS) -o flashbuild flashbuild.o flashcommon.o
|
|
|
|
install: default
|