2016-01-19 05:42:32 +11:00
|
|
|
# TARGET=arm-none-eabi
|
|
|
|
|
|
|
|
#CC=$(TARGET)-gcc
|
2015-08-08 06:29:15 +10:00
|
|
|
CC=gcc
|
2016-01-19 05:42:32 +11:00
|
|
|
|
2016-01-19 10:28:06 +11:00
|
|
|
CFLAGS=-O2 -g -std=c99 -Isrc/lib/lua -Iinclude
|
2016-01-04 04:08:43 +11:00
|
|
|
|
|
|
|
BUILD = bin/
|
|
|
|
SOURCE = src/c/
|
|
|
|
|
2016-01-03 13:25:12 +11:00
|
|
|
CORELUA = src/lua/core
|
2016-01-19 11:25:14 +11:00
|
|
|
RESOURCES = resources
|
2016-01-04 04:08:43 +11:00
|
|
|
LIBS=-lm
|
2015-08-08 06:29:15 +10:00
|
|
|
|
2016-01-19 11:25:14 +11:00
|
|
|
GENERATED=include/luares.h src/c/gen/luares.c include/res.h src/c/gen/res.c
|
2016-01-03 13:25:12 +11:00
|
|
|
LUAPARAMS = $(CORELUA) include/luares.h src/c/gen/luares.c lua_
|
2016-01-19 11:25:14 +11:00
|
|
|
RESPARAMS = $(RESOURCES) include/res.h src/c/gen/res.c res_
|
2016-01-04 04:08:43 +11:00
|
|
|
LDFLAGS=-static
|
2016-01-03 13:25:12 +11:00
|
|
|
|
2016-01-04 04:08:43 +11:00
|
|
|
SRCDIRECTORIES = $(shell find $(SOURCE) -type d)
|
2016-01-03 13:25:12 +11:00
|
|
|
BUILDDIRECTORIES = $(patsubst $(SOURCE)%, $(BUILD)%, $(SRCDIRECTORIES))
|
2016-01-04 04:08:43 +11:00
|
|
|
|
|
|
|
CFILES = $(shell find $(SOURCE) -type f -name '*.c')
|
|
|
|
OBJECTS := $(patsubst $(SOURCE)%.c, $(BUILD)%.c.o, $(CFILES))
|
|
|
|
|
2016-01-03 13:25:12 +11:00
|
|
|
#Rules
|
2016-01-04 04:08:43 +11:00
|
|
|
#Prepare
|
|
|
|
$(BUILDDIRECTORIES):
|
2016-01-05 04:20:40 +11:00
|
|
|
mkdir -p $@
|
2016-01-04 04:08:43 +11:00
|
|
|
|
2016-01-03 13:25:12 +11:00
|
|
|
#Build
|
2016-01-19 11:25:14 +11:00
|
|
|
all: smallclean $(BUILDDIRECTORIES) resources $(BUILD)lupi
|
2016-01-03 13:25:12 +11:00
|
|
|
|
|
|
|
build: clean all
|
2015-08-08 06:29:15 +10:00
|
|
|
|
2016-01-04 04:08:43 +11:00
|
|
|
$(BUILD)lupi: $(OBJECTS)
|
|
|
|
$(CC) $(LDFLAGS) $(OBJECTS) -o $@ $(LIBS)
|
2015-08-08 06:29:15 +10:00
|
|
|
|
2016-01-19 08:19:10 +11:00
|
|
|
$(BUILD)%.c.o: $(SOURCE)%.c
|
2016-01-18 06:07:51 +11:00
|
|
|
$(CC) -c $(CFLAGS) -I /usr/include -I src/c -I src/c/lib/lua $< -o $@
|
2016-01-03 13:25:12 +11:00
|
|
|
|
|
|
|
#Resources
|
2016-01-19 11:25:14 +11:00
|
|
|
resources: cleanresourcues
|
2016-01-03 13:25:12 +11:00
|
|
|
scripts/txt2c $(LUAPARAMS)
|
2016-01-19 11:25:14 +11:00
|
|
|
scripts/txt2c $(RESPARAMS)
|
2016-01-03 13:25:12 +11:00
|
|
|
|
|
|
|
#Clean rules
|
|
|
|
cleanresourcues:
|
|
|
|
-rm -f $(GENERATED)
|
|
|
|
mkdir -p src/c/gen/
|
|
|
|
touch src/c/gen/luares.c
|
|
|
|
touch include/luares.h
|
|
|
|
|
2016-01-04 04:08:43 +11:00
|
|
|
clean: cleanresourcues
|
|
|
|
-rm -rf $(BUILD)
|
2016-01-19 05:42:32 +11:00
|
|
|
|
|
|
|
smallclean:
|
|
|
|
find . -name '*~' -type f -exec rm {} \;
|
|
|
|
|
|
|
|
# Other
|
|
|
|
|
2016-01-19 11:25:14 +11:00
|
|
|
.PHONY: clean cleanresourcues resources build smallclean all
|