Changeset 445 for trunk/user/idbg
- Timestamp:
- May 29, 2018, 9:27:23 AM (7 years ago)
- Location:
- trunk/user/idbg
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/user/idbg/Makefile
r444 r445 11 11 OBJS = build/idbg.o 12 12 13 INCLUDES = -I. -I$(LIBC_INCLUDE) -I$(LIBALMOSMKH_INCLUDE) -I$(SHARED_INCLUDE) -I$(LIBPTHREAD_INCLUDE) 13 INCLUDES = -I. \ 14 -I$(LIBC_INCLUDE) \ 15 -I$(LIBPTHREAD_INCLUDE) \ 16 -I$(LIBALMOSMKH_INCLUDE) \ 17 -I$(SHARED_INCLUDE) 14 18 15 19 compile: dirs build/idbg.elf 16 20 17 21 build/idbg.elf : $(OBJS) idbg.ld 18 $(LD) -o $@ -T idbg.ld $(OBJS) -nostdlib -L$(LIBC) -L$(LIBPTHREAD) -L$(LIBALMOSMKH) -lpthread -lc -lalmos-mkh -lc -lpthread -lc -lalmos-mkh -lpthread -lc22 $(LD) -o $@ -T idbg.ld $(OBJS) -nostdlib -L$(LIBC) -L$(LIBPTHREAD) -L$(LIBALMOSMKH) -lpthread -lc -lalmosmkh -lc -lpthread 19 23 $(DU) -D $@ > $@.txt 20 24 -
trunk/user/idbg/idbg.c
r444 r445 8 8 /////////////////////////////////////////////////////////////////////////////// 9 9 10 11 10 #include <stdlib.h> 12 11 #include <stdio.h> 13 #include <almos -mkh.h>12 #include <almosmkh.h> 14 13 15 14 ///////////
Note: See TracChangeset
for help on using the changeset viewer.