source: trunk/user/kleenex/Makefile

Last change on this file was 660, checked in by alain, 6 years ago

introducing three applications:

  • kleenex
  • tcp_client
  • tcp_server
File size: 973 bytes
Line 
1############################################################################
2# Makefile for "kleenex" application running on ALMOS-MKH
3############################################################################
4
5-include ../../params-soft.mk
6
7ifeq ($(ARCH_NAME),)
8$(error Please define in ARCH_NAME parameter in params-soft.mk!)
9endif
10
11OBJS = build/kleenex.o
12
13INCLUDES = -I. \
14 -I$(LIBC_INCLUDE) \
15 -I$(LIBPTHREAD_INCLUDE) \
16 -I$(LIBALMOSMKH_INCLUDE) \
17 -I$(SHARED_INCLUDE) \
18 -I$(HAL_INCLUDE)
19
20compile: dirs build/kleenex.elf
21
22build/kleenex.elf : $(OBJS) kleenex.ld
23 $(LD) -o $@ -T kleenex.ld $(OBJS) -L$(LIBC) -L$(LIBPTHREAD) -L$(LIBALMOSMKH) \
24 -lc -lpthread -lalmosmkh -lpthread -lc
25 $(DU) -D $@ > $@.txt
26
27build/kleenex.o : kleenex.c
28 $(CC) $(INCLUDES) $(CFLAGS) -c -o $@ $<
29
30dirs:
31 @mkdir -p build/
32
33clean:
34 rm -rf build/*.o build/*.elf build/*.txt
35
36.PHONY: dirs clean
37
Note: See TracBrowser for help on using the repository browser.