source: trunk/platform/ixus40_sd300/Makefile @ 2798

Revision 2731, 445 bytes checked in by philmoz, 4 weeks ago (diff)

Remove unnecessary recursion in makefiles, delete unneeded makefiles.
Simplify rules for modules building, move module .elf files to subdirectory to reduce clutter.

  • Property svn:eol-style set to LF
Line 
1curdir=./
2topdir=../../
3
4include $(topdir)makefile.inc
5
6CFLAGS+=-DLOW_LEVEL
7
8all: all-recursive libplatform.a
9
10OBJS=main.o lib.o wrappers.o kbd.o shooting.o
11# stubs_init.o
12
13kbd.o: kbd.c ../generic/kbd.c
14lib.o: lib.c
15main.o: main.c ../generic/main.c
16shooting.o: shooting.c ../generic/shooting.c
17wrappers.o: wrappers.c ../generic/wrappers.c
18
19libplatform.a: $(OBJS)
20
21clean: clean-recursive
22        rm -f $(OBJS) libplatform.a
23
24include $(topdir)bottom.inc
Note: See TracBrowser for help on using the repository browser.