6 lines
119 B
Makefile
6 lines
119 B
Makefile
|
CC = g++
|
||
|
CFLAGS = -O2
|
||
|
|
||
|
iconvtest: iconvtest.cpp ../../source/utf8.h timer.h
|
||
|
$(CC) $(CFLAGS) iconvtest.cpp -oiconvtest
|