L1A/Makefile

24 lines
361 B
Makefile
Raw Normal View History

2024-08-27 09:23:56 -06:00
TARGET = L1A
2024-08-28 22:29:28 -06:00
SRC_FILES = main.cpp math.cpp
2024-08-27 09:23:56 -06:00
# NO EDITS BELOW THIS LINE
CXX = g++
OBJECTS = $(SRC_FILES:.cpp=.o)
ifeq ($(shell echo "Windows"), "Windows")
TARGET := $(TARGET).exe
DEL = del
else
DEL = rm -f
endif
all: $(TARGET)
$(TARGET): $(OBJECTS)
$(CXX) -std=c++17 -o $@ $^
%.o: %.cpp
$(CXX) -std=c++17 -o $@ -c $<
clean:
$(DEL) $(TARGET) $(OBJECTS)