WHY2/Makefile

102 lines
3.2 KiB
Makefile
Raw Normal View History

# 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
2023-01-27 14:26:37 +01:00
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_CORE=$(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
2022-11-18 16:10:20 +01:00
SRC_CORE_APP=./src/core/app/*.c
SRC_LOGGER=./src/logger/lib/*.c
2022-11-18 16:20:01 +01:00
2022-11-17 14:04:03 +01:00
INCLUDE_DIR=./include
2022-11-18 16:16:11 +01:00
INCLUDE_CORE=$(INCLUDE_DIR)/*.h
2022-11-18 16:20:01 +01:00
INCLUDE_LOGGER=$(INCLUDE_DIR)/logger/*.h
2022-11-18 16:28:57 +01:00
TEST_CORE=./src/core/lib/test/main.c
2022-11-18 16:26:56 +01:00
LIBS_CORE=-ljson-c -lcurl -lgit2
LIB_CORE=-lwhy2
2022-11-18 17:43:53 +01:00
TEST_LOGGER=./src/logger/lib/test/main.c
2023-02-08 09:45:39 +01:00
LIBS_LOGGER=$(LIB_CORE)
LIB_LOGGER=-lwhy2-logger
2022-11-18 17:41:20 +01:00
# 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:
2022-11-18 16:16:11 +01:00
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
2022-11-18 16:23:23 +01:00
installHeaderLogger:
for file in $(INCLUDE_LOGGER); do install -m 755 -D $(DOLLAR)file -t $(INSTALL_INCLUDE)/$(PROJECT_NAME)/logger; done
2022-11-18 16:24:47 +01:00
buildLibCore:
2022-11-18 17:24:30 +01:00
$(MAKE) clean
2022-11-18 16:10:20 +01:00
$(CC) $(CFLAGS) -fPIC -c $(SRC_CORE)
2022-11-18 16:26:56 +01:00
$(CC) $(CFLAGS) -shared -o lib$(PROJECT_NAME).so *.o $(LIBS_CORE)
2022-11-18 16:33:07 +01:00
buildLibLogger:
2022-11-18 17:24:30 +01:00
$(MAKE) clean
2022-11-18 16:33:07 +01:00
$(CC) $(CFLAGS) -fPIC -c $(SRC_LOGGER)
$(CC) $(CFLAGS) -shared -o lib$(PROJECT_NAME)-logger.so *.o $(LIBS_LOGGER)
2022-11-18 16:25:17 +01:00
installLibCore: buildLibCore
2022-11-17 14:04:03 +01:00
install -m 755 ./lib$(PROJECT_NAME).so $(INSTALL_LIBRARY)/lib$(PROJECT_NAME).so
2023-02-08 14:22:01 +01:00
installAppCore: appCore
install -m 755 $(OUTPUT_APP_CORE) $(INSTALL_BIN)/$(PROJECT_NAME)
2022-11-18 16:34:10 +01:00
installLibLogger: buildLibLogger
install -m 755 ./lib$(PROJECT_NAME)-logger.so $(INSTALL_LIBRARY)/lib$(PROJECT_NAME)-logger.so
2022-11-18 16:40:25 +01:00
testCore:
2023-01-27 14:26:37 +01:00
$(CC) $(CFLAGS) $(TEST_CORE) -o $(OUTPUT_TEST_CORE) $(LIB_CORE)
2022-11-18 17:43:26 +01:00
testLogger:
2023-01-27 14:26:37 +01:00
$(CC) $(CFLAGS) $(TEST_LOGGER) -o $(OUTPUT_TEST_LOGGER) $(LIB_CORE) $(LIB_LOGGER)
2022-11-18 17:43:26 +01:00
2023-02-08 14:22:01 +01:00
appCore:
$(CC) $(CFLAGS) $(SRC_CORE_APP) -o $(OUTPUT_APP_CORE) $(LIB_CORE)
clean:
2023-01-06 15:25:57 +01:00
rm -rf $(OUTPUT)/* $(LOGS)/* *.o *.so vgcore.*
2022-06-01 17:32:27 +02:00
installHeader: installHeaderCore installHeaderLogger
2022-11-18 17:24:30 +01:00
install: installHeader installLibCore installLibLogger installAppCore clean
2022-11-18 17:45:18 +01:00
installTest: install testCore testLogger
all: install