24 lines
No EOL
364 B
Makefile
24 lines
No EOL
364 B
Makefile
TARGET = A1
|
|
SRC_FILES = main.cpp hands.cpp
|
|
|
|
# NO EDITS BELOW THIS LINE
|
|
CXX = g++ -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)
|