chundoong-lab-ta/SamsungDS22/HW1/Makefile

12 lines
88 B
Makefile
Raw Normal View History

2022-09-29 18:01:45 +09:00
all: hw1
hw1: main.cpp
g++ -o $@ $<
run: hw1
./hw1 < sample.in
clean:
rm -rf hw1