102 lines
3.2 KiB
Makefile
102 lines
3.2 KiB
Makefile
# This is part of WHY2
|
|
# Copyright (C) 2022 Václav Šmejkal
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
# Compiler Settings
|
|
CC=cc
|
|
CFLAGS=-Wall -Wextra -Werror -Wcomment -Wformat -Wformat-security -Wmain -Wnonnull -Wunused -std=gnu11 -O2 -g # Remove the '-g' flag if you want the smallest possible lib size
|
|
|
|
# Output Files
|
|
PROJECT_NAME=why2
|
|
OUTPUT=out
|
|
LOGS=logs
|
|
|
|
OUTPUT_TEST_CORE=$(OUTPUT)/$(PROJECT_NAME)-core-test
|
|
OUTPUT_APP=$(OUTPUT)/$(PROJECT_NAME)-app
|
|
|
|
OUTPUT_TEST_LOGGER=$(OUTPUT)/$(PROJECT_NAME)-logger-test
|
|
|
|
# Source Code
|
|
SRC_CORE=./src/core/lib/*.c ./src/core/lib/utils/*.c
|
|
SRC_CORE_APP=./src/core/app/*.c
|
|
SRC_LOGGER=./src/logger/lib/*.c
|
|
|
|
INCLUDE_DIR=./include
|
|
INCLUDE_CORE=$(INCLUDE_DIR)/*.h
|
|
INCLUDE_LOGGER=$(INCLUDE_DIR)/logger/*.h
|
|
|
|
TEST_CORE=./src/core/lib/test/main.c
|
|
LIBS_CORE=-ljson-c -lcurl -lgit2
|
|
LIB_CORE=-lwhy2
|
|
|
|
TEST_LOGGER=./src/logger/lib/test/main.c
|
|
LIBS_LOGGER=$(LIB_CORE)
|
|
LIB_LOGGER=-lwhy2-logger
|
|
|
|
# Install Files
|
|
INSTALL_INCLUDE=/usr/include
|
|
INSTALL_LIBRARY=/usr/lib
|
|
INSTALL_BIN=/usr/bin
|
|
|
|
# Misc
|
|
DOLLAR=$
|
|
|
|
##########
|
|
|
|
noTarget: # Do not use this, please <3
|
|
@echo Hey you... You have to enter your target, too. Use \'install\' target for installing $(PROJECT_NAME)-core.
|
|
|
|
installHeaderCore:
|
|
for file in $(INCLUDE_CORE); do install -m 755 -D $(DOLLAR)file -t $(INSTALL_INCLUDE)/$(PROJECT_NAME); done
|
|
ln -sf $(INSTALL_INCLUDE)/$(PROJECT_NAME)/$(PROJECT_NAME).h $(INSTALL_INCLUDE)/$(PROJECT_NAME).h
|
|
|
|
installHeaderLogger:
|
|
for file in $(INCLUDE_LOGGER); do install -m 755 -D $(DOLLAR)file -t $(INSTALL_INCLUDE)/$(PROJECT_NAME)/logger; done
|
|
|
|
buildLibCore:
|
|
$(MAKE) clean
|
|
$(CC) $(CFLAGS) -fPIC -c $(SRC_CORE)
|
|
$(CC) $(CFLAGS) -shared -o lib$(PROJECT_NAME).so *.o $(LIBS_CORE)
|
|
|
|
buildLibLogger:
|
|
$(MAKE) clean
|
|
$(CC) $(CFLAGS) -fPIC -c $(SRC_LOGGER)
|
|
$(CC) $(CFLAGS) -shared -o lib$(PROJECT_NAME)-logger.so *.o $(LIBS_LOGGER)
|
|
|
|
installLibCore: buildLibCore
|
|
install -m 755 ./lib$(PROJECT_NAME).so $(INSTALL_LIBRARY)/lib$(PROJECT_NAME).so
|
|
|
|
installAppCore: appCore
|
|
install -m 755 $(OUTPUT_APP) $(INSTALL_BIN)/$(PROJECT_NAME)
|
|
|
|
installLibLogger: buildLibLogger
|
|
install -m 755 ./lib$(PROJECT_NAME)-logger.so $(INSTALL_LIBRARY)/lib$(PROJECT_NAME)-logger.so
|
|
|
|
testCore:
|
|
$(CC) $(CFLAGS) $(TEST_CORE) -o $(OUTPUT_TEST_CORE) $(LIB_CORE)
|
|
|
|
testLogger:
|
|
$(CC) $(CFLAGS) $(TEST_LOGGER) -o $(OUTPUT_TEST_LOGGER) $(LIB_CORE) $(LIB_LOGGER)
|
|
|
|
appCore:
|
|
$(CC) $(CFLAGS) $(SRC_CORE_APP) -o $(OUTPUT_APP) $(LIB_CORE)
|
|
|
|
clean:
|
|
rm -rf $(OUTPUT)/* $(LOGS)/* *.o *.so vgcore.*
|
|
|
|
installHeader: installHeaderCore installHeaderLogger
|
|
install: installHeader installLibCore installLibLogger installAppCore clean
|
|
installTest: install testCore testLogger
|
|
all: install |