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