SlunkCrypt/Makefile

97 lines
2.6 KiB
Makefile
Raw Normal View History

2020-10-14 19:59:12 +02:00
# ---------------------------------------------------------------------------
# Options
# ---------------------------------------------------------------------------
2020-10-13 23:36:58 +02:00
2020-10-14 19:59:12 +02:00
DEBUG ?= 0
MARCH ?= native
MTUNE ?= native
# ---------------------------------------------------------------------------
# Directories
2020-10-14 19:59:12 +02:00
# ---------------------------------------------------------------------------
SUBDIR_APP := frontend
SUBDIR_LIB := libslunkcrypt
# ---------------------------------------------------------------------------
# Flags
# ---------------------------------------------------------------------------
CFLAGS = -I$(SUBDIR_LIB)/include -Wall -Wno-trigraphs -march=$(MARCH) -mtune=$(MTUNE)
2020-10-14 19:59:12 +02:00
ifeq ($(DEBUG),1)
CFLAGS += -Og -g
CONFIG := _g
2020-10-14 19:59:12 +02:00
undefine LDFLGS
else
2020-10-14 21:55:39 +02:00
CFLAGS += -O3 -DNDEBUG
undefine CONFIG
2020-10-14 19:59:12 +02:00
LDFLGS += -static -s
endif
UNAME := $(shell uname)
2020-10-14 19:59:12 +02:00
undefine SUFFIX
ifneq ($(filter MINGW% CYGWIN%,$(UNAME)),)
2020-10-14 19:59:12 +02:00
SUFFIX := .exe
2020-10-13 23:36:58 +02:00
else
2020-10-14 19:59:12 +02:00
undefine SUFFIX
2020-10-13 23:36:58 +02:00
endif
ifneq ($(filter MINGW%,$(UNAME)),)
LDFLGS += -municode -mconsole
2020-10-14 19:59:12 +02:00
endif
# ---------------------------------------------------------------------------
# File names
# ---------------------------------------------------------------------------
OUTNAME_APP := slunkcrypt$(CONFIG)$(SUFFIX)
OUTNAME_LIB := libslunkcrypt$(CONFIG)-1.a
OUTPATH_APP := $(SUBDIR_APP)/bin/$(OUTNAME_APP)
OUTPATH_LIB := $(SUBDIR_LIB)/lib/$(OUTNAME_LIB)
2020-10-14 19:59:12 +02:00
SOURCES_APP := $(wildcard $(SUBDIR_APP)/src/*.c)
OBJECTS_APP := $(patsubst $(SUBDIR_APP)/src/%.c,$(SUBDIR_APP)/obj/%$(CONFIG).o,$(SOURCES_APP))
2020-10-14 19:59:12 +02:00
SOURCES_LIB := $(wildcard $(SUBDIR_LIB)/src/*.c)
OBJECTS_LIB := $(patsubst $(SUBDIR_LIB)/src/%.c,$(SUBDIR_LIB)/obj/%$(CONFIG).o,$(SOURCES_LIB))
2020-10-14 19:59:12 +02:00
ifneq ($(filter MINGW% CYGWIN%,$(UNAME)),)
RCFILES_APP := $(wildcard $(SUBDIR_APP)/res/*.rc)
OBJECTS_APP += $(patsubst $(SUBDIR_APP)/res/%.rc,$(SUBDIR_APP)/obj/%.rsrc.o,$(RCFILES_APP))
endif
2020-10-14 19:59:12 +02:00
# ---------------------------------------------------------------------------
# Targets
# ---------------------------------------------------------------------------
2020-10-13 23:36:58 +02:00
.PHONY: all clean
all: $(OUTPATH_APP)
2020-10-14 19:59:12 +02:00
$(OUTPATH_APP): $(OBJECTS_APP) $(OUTPATH_LIB)
2020-10-14 19:59:12 +02:00
@mkdir -p $(@D)
$(CC) $(CFLAGS) $^ -o $@ $(LDFLGS)
$(OUTPATH_LIB): $(OBJECTS_LIB)
2020-10-14 19:59:12 +02:00
@mkdir -p $(@D)
$(AR) rcs $@ $^
2020-10-13 23:36:58 +02:00
$(SUBDIR_APP)/obj/%$(CONFIG).o: $(SUBDIR_APP)/src/%.c
2020-10-14 19:59:12 +02:00
@mkdir -p $(@D)
$(CC) $(CFLAGS) -c $< -o $@
$(SUBDIR_APP)/obj/%.rsrc.o: $(SUBDIR_APP)/res/%.rc
@mkdir -p $(@D)
windres -o $@ $<
$(SUBDIR_LIB)/obj/%$(CONFIG).o: $(SUBDIR_LIB)/src/%.c
@mkdir -p $(@D)
$(CC) $(CFLAGS) -c $< -o $@
2020-10-13 23:36:58 +02:00
clean:
2020-10-20 15:21:00 +02:00
$(RM) $(SUBDIR_APP)/obj/*.o $(SUBDIR_APP)/lib/*.a $(SUBDIR_APP)/bin/*$(SUFFIX)
$(RM) $(SUBDIR_LIB)/obj/*.o $(SUBDIR_LIB)/lib/*.a $(SUBDIR_LIB)/bin/*$(SUFFIX)