6 lines
100 B
Makefile
6 lines
100 B
Makefile
|
CC = g++
|
||
|
CFLAGS = -g
|
||
|
|
||
|
smoketest: test.cpp ../../source/utf8.h
|
||
|
$(CC) $(CFLAGS) test.cpp -osmoketest
|