-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
110 lines (96 loc) · 3.63 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# Copyright 2017-2024 Matt "MateoConLechuga" Waltz
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
PRGM_NAME = convbin
VERSION_STRING = $(shell git describe --abbrev=8 --dirty --always --tags)
CC = gcc
CFLAGS = -Wall -Wextra -Wshadow -O3 -std=c89 -DNDEBUG -DLOG_BUILD_LEVEL=3 -D_LARGEFILE64_SOURCE=1 -DPRGM_NAME="\"$(PRGM_NAME)\"" -DVERSION_STRING="\"$(VERSION_STRING)\"" -flto
LDFLAGS = -flto
ifeq ($(OS),Windows_NT)
TARGET ?= $(PRGM_NAME).exe
SHELL = cmd.exe
NATIVEPATH = $(subst /,\,$1)
RMDIR = ( rmdir /s /q $1 2>nul || call )
MKDIR = ( mkdir $1 2>nul || call )
STRIP = strip --strip-all "$1"
else
TARGET ?= $(PRGM_NAME)
NATIVEPATH = $(subst \,/,$1)
MKDIR = mkdir -p $1
RMDIR = rm -rf $1
ifeq ($(shell uname -s),Darwin)
STRIP = strip "$1"
CFLAGS += -mmacosx-version-min=10.13
LDFLAGS += -mmacosx-version-min=10.13
else
STRIP = strip --strip-all "$1"
endif
endif
V ?= 1
ifeq ($(V),1)
Q =
else
Q = @
endif
BINDIR := ./bin
OBJDIR := ./obj
SRCDIR := ./src
DEPDIR := ./src/deps
SOURCES := $(SRCDIR)/main.c \
$(SRCDIR)/convert.c \
$(SRCDIR)/input.c \
$(SRCDIR)/output.c \
$(SRCDIR)/compress.c \
$(SRCDIR)/extract.c \
$(SRCDIR)/options.c \
$(SRCDIR)/ti8x.c \
$(SRCDIR)/log.c \
$(SRCDIR)/asm/zx7_decompressor.c \
$(SRCDIR)/asm/zx0_decompressor.c \
$(SRCDIR)/asm/extractor.c \
$(DEPDIR)/miniz/miniz.c \
$(DEPDIR)/zx/zx7/compress.c \
$(DEPDIR)/zx/zx7/optimize.c \
$(DEPDIR)/zx/zx0/compress.c \
$(DEPDIR)/zx/zx0/optimize.c
OBJECTS := $(SOURCES:$(SRCDIR)/%.c=$(OBJDIR)/%.o)
LIBRARIES :=
all: $(BINDIR)/$(TARGET)
release: $(BINDIR)/$(TARGET)
$(BINDIR)/$(TARGET): $(OBJECTS)
$(Q)$(call MKDIR,$(call NATIVEPATH,$(@D)))
$(Q)$(CC) $(LDFLAGS) $(call NATIVEPATH,$^) -o $(call NATIVEPATH,$@) $(addprefix -l, $(LIBRARIES))
$(Q)$(call STRIP,$@)
$(OBJDIR)/%.o: $(SRCDIR)/%.c
$(Q)$(call MKDIR,$(call NATIVEPATH,$(@D)))
$(Q)$(CC) -c $(call NATIVEPATH,$<) $(CFLAGS) -o $(call NATIVEPATH,$@)
test:
cd test && bash ./test.sh
clean:
$(Q)$(call RMDIR,$(call NATIVEPATH,$(BINDIR)))
$(Q)$(call RMDIR,$(call NATIVEPATH,$(OBJDIR)))
.PHONY: all release test clean