source: soft/giet_vm/applications/classif/Makefile @ 708

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

Adapt the following application to the POSIX threads API

  • convol
  • classif
  • raycast
  • coproc
  • display
  • gameoflife
  • transpose
  • shell
File size: 391 bytes
RevLine 
[457]1
[589]2APP_NAME = classif
[457]3
[708]4OBJS= classif.o
[457]5
[589]6LIBS= -L../../build/libs -luser
[457]7
[589]8INCLUDES = -I.  -I../..  -I../../giet_libs  -I../../giet_xml 
[457]9
[589]10LIB_DEPS = ../../build/libs/libuser.a
[457]11
[589]12appli.elf: $(OBJS) $(APP_NAME).ld $(LIBS_DEPS) 
13        $(LD) -o $@ -T $(APP_NAME).ld $(OBJS) $(LIBS)
14        $(DU) -D $@ > $@.txt
15
[457]16%.o: %.c
[589]17        $(CC)  $(INCLUDES) $(CFLAGS) -c -o  $@ $<
[457]18
19clean:
[589]20        rm -f *.o *.elf *.txt *.pyc core *~
Note: See TracBrowser for help on using the repository browser.