L1B/Makefile

24 lines
352 B
Makefile
Raw Normal View History

2024-08-28 22:32:24 -06:00
TARGET = L1B
SRC_FILES = main.cpp
# 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)