Files
seer/tests/hellounicode/Makefile
T

11 lines
161 B
Makefile
Raw Normal View History

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