Stop inherits from Position
[cs356-p1-elevator.git] / Makefile
1 test: test.o elevator.o position.o stop.o
2         g++ -o $@ $^
3
4 run: test
5         ./test
6
7 clean:
8         rm -f *.o test
9
10 all: test
11
12 .PHONY: run clean all