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