Added native CPU to avoid reliance on x86-specific code for the native and netsim platforms

This commit is contained in:
adamdunkels 2007-03-28 20:07:57 +00:00
parent 99f8221f3b
commit fbd01ee50b

View file

@ -0,0 +1,29 @@
CONTIKI_SOURCEFILES += rtimer-arch.c elfloader-stub.c
### Compiler definitions
CC = gcc
LD = gcc
AS = as
OBJCOPY = objcopy
STRIP = strip
CFLAGSNO = -I. -I$(CONTIKI) -I$(CONTIKI)/core -I$(CONTIKI_CPU) \
-I$(CONTIKI)/platform/$(TARGET) \
${addprefix -I,$(APPDIRS)} $(APP_INCLUDES) \
-Wall -g -I. -I/usr/local/include
CFLAGS += $(CFLAGSNO) -O
LDFLAGS = -Wl,-Map=contiki-native.map,-export-dynamic
### Compilation rules
%.so: $(OBJECTDIR)/%.o
$(LD) -shared -o $@ $^
# .PHONY: symbols.c symbols.h
ifdef CORE
symbols.c symbols.h:
$(NM) $(CORE) | awk -f ../../tools/mknmlist > symbols.c
# @${CONTIKI}/tools/make-symbols $(CORE)
else
symbols.c symbols.h:
@${CONTIKI}/tools/make-empty-symbols
endif