prosperon/Makefile

126 lines
2.7 KiB
Makefile
Raw Normal View History

PROCS != nproc
MAKEFLAGS = --jobs=$(PROCS)
2022-02-04 08:38:25 -06:00
2022-02-03 09:16:22 -06:00
UNAME != uname
2021-11-30 21:29:18 -06:00
QFLAGS = -O3 -DDBG=0 -DED=1
INFO = rel
PTYPE != uname -m
2022-06-22 23:04:35 -05:00
# Options
# DBG=0,1 --- build with debugging symbols and logging
# ED=0,1 --- build with or without editor
ifeq ($(DBG), 1)
QFLAGS = -O0 -g -DDBG=1 -DED=1
2021-11-30 21:29:18 -06:00
INFO = dbg
endif
ifeq ($(ED), 0)
QFLAGS = -DED=0
INFO = ed
endif
BIN = bin/
objprefix = $(BIN)obj/$(INFO)
2022-02-04 08:38:25 -06:00
2022-02-03 09:16:22 -06:00
define prefix
2022-08-06 15:39:29 -05:00
echo $(1) | tr " " "\n" | sed 's/.*/$(2)&$(3)/'
2022-02-03 09:16:22 -06:00
endef
2022-01-20 11:16:44 -06:00
2022-02-03 09:16:22 -06:00
define rm
tmp=$$(mktemp); \
echo $(2) | tr " " "\n" > $${tmp}; \
echo $(1) | tr " " "\n" | grep -v -f $${tmp}; \
rm $${tmp}
endef
2022-01-20 11:16:44 -06:00
2022-02-04 08:38:25 -06:00
define findindir
2022-02-04 11:36:24 -06:00
find $(1) -maxdepth 1 -type f -name '$(2)'
2022-02-04 08:38:25 -06:00
endef
2022-02-03 09:16:22 -06:00
# All other sources
edirs != find source -type d -name include
edirs += source/engine source/engine/thirdparty/Nuklear
ehead != $(call findindir, source/engine,*.h)
eobjects != find source/engine -type f -name '*.c' | sed -r 's|^(.*)\.c|$(objprefix)/\1.o|' # Gets all .c files and makes .o refs
eobjects != $(call rm,$(eobjects),sqlite pl_mpeg_extract_frames pl_mpeg_player yugine nuklear)
2021-11-30 21:29:18 -06:00
includeflag != $(call prefix,$(edirs),-I)
2022-06-23 13:16:39 -05:00
WARNING_FLAGS = #-Wall -pedantic -Wextra -Wwrite-strings -Wno-incompatible-function-pointer-types -Wno-incompatible-pointer-types -Wno-unused-function
SEM = 0.0.1
COM != git rev-parse --short HEAD
VER = $(SEM)-$(COM)
COMPILER_FLAGS = $(includeflag) $(QFLAGS) -MD $(WARNING_FLAGS) -DVER=\"$(VER)\" -DINFO=\"$(INFO)\" -c $< -o $@
2021-11-30 21:29:18 -06:00
LIBPATH = -Lbin
2022-06-28 18:51:21 -05:00
ifeq ($(OS), WIN32)
LINKER_FLAGS = $(QFLAGS)
ELIBS = engine ucrt pthread yughc portaudio glfw3 opengl32 gdi32 ws2_32 ole32 winmm setupapi m
CLIBS =
2022-02-03 09:16:22 -06:00
EXT = .exe
2021-11-30 21:29:18 -06:00
else
LINKER_FLAGS = $(QFLAGS) -L/usr/local/lib
ELIBS = engine pthread yughc portaudio asound glfw3 c m dl
CLIBS =
2022-02-03 09:16:22 -06:00
EXT =
2021-11-30 21:29:18 -06:00
endif
2022-02-03 09:16:22 -06:00
ELIBS != $(call prefix, $(ELIBS), -l)
ELIBS := $(CLIBS) $(ELIBS)
2021-11-30 21:29:18 -06:00
2022-08-06 15:39:29 -05:00
objects = $(eobjects)
2022-02-03 11:29:43 -06:00
DEPENDS = $(objects:.o=.d)
-include $(DEPENDS)
2022-02-03 09:16:22 -06:00
yuginec = source/engine/yugine.c
2022-01-19 16:43:21 -06:00
2022-02-04 11:36:24 -06:00
ENGINE = $(BIN)libengine.a
INCLUDE = $(BIN)include
2022-02-04 08:38:25 -06:00
LINK = $(LIBPATH) $(LINKER_FLAGS) $(ELIBS)
MYTAG = $(VER)_$(PTYPE)_$(INFO)
.PHONY: yugine
2022-02-03 11:29:43 -06:00
yugine: $(objprefix)/source/engine/yugine.o $(ENGINE)
@echo $(CC)
@echo Linking yugine
$(CC) $< $(LINK) -o yugine
@echo Finished build
2022-08-12 14:03:56 -05:00
dist: yugine
mkdir -p bin/dist
cp yugine bin/dist
cp -rf assets/fonts bin/dist
cp -rf source/scripts bin/dist
cp -rf source/shaders bin/dist
tar -czf yugine-$(MYTAG).tar.gz --directory bin/dist .
install: yugine
cp yugine ~/.local/bin
2022-08-12 14:03:56 -05:00
2022-10-23 17:10:53 -05:00
$(ENGINE): $(eobjects)
2022-02-04 08:38:25 -06:00
@echo Making library engine.a
2022-06-23 13:16:39 -05:00
@ar r $(ENGINE) $(eobjects)
2022-11-20 15:50:14 -06:00
@mkdir -p $(INCLUDE)
2022-02-04 11:36:24 -06:00
@cp -u -r $(ehead) $(INCLUDE)
2022-02-04 08:38:25 -06:00
2021-11-30 21:29:18 -06:00
$(objprefix)/%.o:%.c
2022-01-20 11:16:44 -06:00
@mkdir -p $(@D)
2022-01-19 16:43:21 -06:00
@echo Making C object $@
2022-06-30 10:31:23 -05:00
@$(CC) $(COMPILER_FLAGS)
2021-11-30 21:29:18 -06:00
.PHONY: clean
2021-11-30 21:29:18 -06:00
clean:
@echo Cleaning project
2022-06-28 22:13:39 -05:00
@find $(BIN) -type f -delete
@rm -rf source/portaudio/build source/glfw/build