This repository has been archived on 2021-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
ConsoleUI/makefile

10 lines
219 B
Makefile

CXXFLAGS = -std=c++14 -Wall -O2
lib:
$(CXX) $(CXXFLAGS) CUI.cpp -o CUI.o
$(CXX) $(CXXFLAGS) ColorUI.cpp -o ColorUI.o
test:
$(CXX) $(CXXFLAGS) example.cpp -o test.exe
test.exe
clean:
rm -f CUI.o ColorUI.o test.exe