chundoong-lab-ta/SamsungDS22/HW1/Makefile

12 lines
88 B
Makefile

all: hw1
hw1: main.cpp
g++ -o $@ $<
run: hw1
./hw1 < sample.in
clean:
rm -rf hw1