1
0
зеркало из https://github.com/coolaj86/fizzbuzz.git synced 2024-11-16 17:29:04 +00:00

15 строки
247 B
Makefile

all: test
bst: obj/BST.o
obj/BST.o: BST.h BST.cpp
g++ -c -o obj/BST.o BST.cpp
ll: obj/LinkedList.o LinkedList.h LinkedList.cpp
g++ -c -o obj/LinkedList.o LinkedList.cpp
test: bst ll colexp passoff
./colexp part2
clean:
rm *.o obj/*.o -rf