ae2073cac9
- All compilers used support the -I option for setting an include search directory. - The Contiki source tree follows the (common) approach of placing declarations (in headerf iles) in the same directory as definitions (in source files). As a result it makes sense to use the -I compiler option for just the same set of directories used for the vpath gnumake directive. Note: I checked several builds but nevertheless one or the other might need some additional adjustsments. Sorry for the inconvenience.
29 lines
619 B
Makefile
29 lines
619 B
Makefile
CONTIKI_CPU_DIRS = . net
|
|
|
|
CONTIKI_SOURCEFILES += mtarch.c rtimer-arch.c elfloader-stub.c
|
|
|
|
### Compiler definitions
|
|
CC = gcc
|
|
LD = gcc
|
|
AS = as
|
|
OBJCOPY = objcopy
|
|
STRIP = strip
|
|
CFLAGSNO = -Wall -g -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
|