source: trunk/user/init/Makefile @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

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