Files
seer/tests/hellounicode/Makefile
T
2023-12-27 12:31:31 -06:00

11 lines
161 B
Makefile

.PHONY: all
all: hellounicode
hellounicode: hellounicode.cpp
g++ -g -o hellounicode hellounicode.cpp
.PHONY: clean
clean:
rm -f hellounicode hellounicode.o