source: trunk/user/idbg/Makefile @ 469

Last change on this file since 469 was 445, checked in by alain, 6 years ago

Restructure the mini_libc.

File size: 918 bytes
RevLine 
[442]1############################################################################
2# Makefile for the ALMOS-MKH  "idbg"  application
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/idbg.o
12
[445]13INCLUDES = -I.                      \
14           -I$(LIBC_INCLUDE)        \
15           -I$(LIBPTHREAD_INCLUDE)  \
16           -I$(LIBALMOSMKH_INCLUDE) \
17           -I$(SHARED_INCLUDE)
[442]18
19compile: dirs build/idbg.elf
20
21build/idbg.elf : $(OBJS) idbg.ld
[445]22        $(LD) -o $@ -T idbg.ld $(OBJS) -nostdlib -L$(LIBC) -L$(LIBPTHREAD) -L$(LIBALMOSMKH) -lpthread -lc -lalmosmkh -lc -lpthread
[442]23        $(DU) -D $@ > $@.txt
24
25build/idbg.o : idbg.c
26        $(CC) $(INCLUDES) -L$(LIBC) $(CFLAGS) -c -o  $@ $<
27
28dirs:
29        @mkdir -p build/
30
31clean:
32        rm -rf build/*.o  build/*.elf  build/*.txt
33
34.PHONY: dirs clean
35
36
Note: See TracBrowser for help on using the repository browser.