12 lines
130 B
Makefile
12 lines
130 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
CXX?= g++
|
|
CXXFLAGS?=-O2
|
|
|
|
pilot_makedoc: makedoc7.cpp
|
|
${CXX} ${CXXFLAGS} -o pilot_makedoc makedoc7.cpp
|
|
|
|
#
|
|
# EOF
|