blob: 2e11591e14f8e9372dc5a4b1fb6d5e6c65d5e2c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
# wrapper Makefile for auto-generated make files
#
#
#############################################################################
# PROJECT MAKEFILES
#############################################################################
MAKE_FILE=Makefile.$(MOD_CONFIG)
include $(MAKE_FILE)
#############################################################################
# The compiler command lne for each src code file to compile
#############################################################################
DO_CC=$(CPLUS) -w $(INCLUDES) $(CFLAGS) -o $@ -c $<
clean:
rm -rf obj/$(NAME)
rm -f $(NAME)_$(ARCH).$(SHLIBEXT)
|