15 lines
186 B
Makefile
15 lines
186 B
Makefile
#
|
|
# use GNU-Compiler tools
|
|
COMPILER=GCC_
|
|
|
|
MAIN = main
|
|
SOURCES = ${MAIN}.cpp
|
|
OBJECTS = $(SOURCES:.cpp=.o)
|
|
|
|
PROGRAM = ${MAIN}.${COMPILER}
|
|
|
|
default:doc
|
|
|
|
|
|
include ../${COMPILER}default.mk
|
|
|