2024-08-28 22:32:24 -06:00
|
|
|
TARGET = L1B
|
|
|
|
SRC_FILES = main.cpp
|
|
|
|
|
2024-09-19 21:43:10 -06:00
|
|
|
# Tyler's custom makefile extensions
|
|
|
|
.DEFAULT_GOAL := all # Necessary so `make` doesn't run the "pack" target, as it is declared before "all"
|
|
|
|
.PHONY: pack clean-run c run
|
|
|
|
|
|
|
|
## Adds only the necessary files for build into a .tar.gz file, named appropriately
|
|
|
|
ARCHIVED_FILES = Makefile $(SRC_FILES) $(SRC_FILES:.cpp=.h) $(SRC_FILES:.cpp=.hpp)
|
|
|
|
pack:
|
|
|
|
tar --ignore-failed-read -czvf $(TARGET).tar.gz $(shell echo $(ARCHIVED_FILES) | xargs ls -d 2>/dev/null)
|
|
|
|
|
|
|
|
## Runs the pack target and then attempts to build & run the program to make sure it functions correctly
|
|
|
|
pack-test: pack
|
|
|
|
$(eval TMP := $(shell mktemp -d))
|
|
|
|
tar -xvzf $(TARGET).tar.gz --directory $(TMP)
|
|
|
|
make -C $(TMP)
|
|
|
|
$(TMP)/$(TARGET)
|
|
|
|
rm -rf $(TMP)
|
|
|
|
|
|
|
|
## An extension of the clean command that is shorter to type and removes a potential .tar.gz file
|
|
|
|
c: clean
|
|
|
|
$(DEL) -f $(TARGET).tar.gz
|
|
|
|
|
|
|
|
## Simply builds and then executes the program
|
|
|
|
run: all
|
|
|
|
./$(TARGET)
|
|
|
|
|
|
|
|
# NO EDITS NEEDED BELOW THIS LINE
|
|
|
|
|
2024-08-28 22:32:24 -06:00
|
|
|
CXX = g++
|
2024-09-19 21:43:10 -06:00
|
|
|
CXXFLAGS = -O2
|
|
|
|
CXXFLAGS_DEBUG = -g
|
|
|
|
CXXFLAGS_WARN = -Wall -Wextra -Wunreachable-code -Wshadow -Wpedantic
|
|
|
|
CPPVERSION = -std=c++17
|
|
|
|
|
2024-08-28 22:32:24 -06:00
|
|
|
OBJECTS = $(SRC_FILES:.cpp=.o)
|
|
|
|
|
|
|
|
ifeq ($(shell echo "Windows"), "Windows")
|
|
|
|
TARGET := $(TARGET).exe
|
|
|
|
DEL = del
|
2024-09-19 21:43:10 -06:00
|
|
|
Q =
|
2024-08-28 22:32:24 -06:00
|
|
|
else
|
|
|
|
DEL = rm -f
|
2024-09-19 21:43:10 -06:00
|
|
|
Q = "
|
2024-08-28 22:32:24 -06:00
|
|
|
endif
|
|
|
|
|
|
|
|
all: $(TARGET)
|
|
|
|
|
|
|
|
$(TARGET): $(OBJECTS)
|
2024-09-19 21:43:10 -06:00
|
|
|
$(CXX) -o $@ $^
|
2024-08-28 22:32:24 -06:00
|
|
|
|
2024-09-19 21:43:10 -06:00
|
|
|
.cpp.o:
|
|
|
|
$(CXX) $(CXXFLAGS) $(CPPVERSION) $(CXXFLAGS_DEBUG) $(CXXFLAGS_WARN) -o $@ -c $<
|
2024-08-28 22:32:24 -06:00
|
|
|
|
|
|
|
clean:
|
2024-09-19 21:43:10 -06:00
|
|
|
$(DEL) -f $(TARGET) $(OBJECTS) Makefile.bak
|
|
|
|
|
|
|
|
depend:
|
|
|
|
@sed -i.bak '/^# DEPENDENCIES/,$$d' Makefile
|
|
|
|
@$(DEL) sed*
|
|
|
|
@echo $(Q)# DEPENDENCIES$(Q) >> Makefile
|
|
|
|
@$(CXX) -MM $(SRC_FILES) >> Makefile
|
|
|
|
|
|
|
|
.PHONY: all clean depend
|
|
|
|
|
|
|
|
# DEPENDENCIES
|
|
|
|
main.o: main.cpp
|