Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6d6a9607b508daad2b18a88892a08ac90bfd305a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
include ${CPP_RUNTIME_ROOTDIR}/buildTools/runtime.mk

# --- 
IN_TARGET 			:= $(notdir $(shell pwd)).exe
IN_BUILD_DIR 		:= ./bin
IN_INCDIRS 			+= ./src
IN_SRCDIRS_REC 		+= ./src
CC					= ${CXX}
IN_CFLAGS			+= -std=c++98 -O0 -g3 -pedantic -Wall
#---


# Create rules
include ${RUNTIME_ROOTDIR}/buildTools/Makefile.mk

Back to the top