source: soft/giet_vm/applications/router/Makefile @ 720

Last change on this file since 720 was 720, checked in by alain, 9 years ago

Adapt the router application to the POSIX API.

File size: 383 bytes
Line 
1
2APP_NAME = router
3
4OBJS= router.o
5
6LIBS= -L../../build/libs -luser
7
8INCLUDES = -I.  -I../..  -I../../giet_libs  -I../../giet_xml 
9
10LIB_DEPS = ../../build/libs/libuser.a
11
12appli.elf: $(OBJS) $(APP_NAME).ld $(LIBS_DEPS) 
13        $(LD) -o $@ -T $(APP_NAME).ld $(OBJS) $(LIBS)
14        $(DU) -D $@ > $@.txt
15
16%.o: %.c
17        $(CC)  $(INCLUDES) $(CFLAGS) -c -o  $@ $<
18
19clean:
20        rm -f *.o *.elf *.txt core *~
Note: See TracBrowser for help on using the repository browser.