1 sources = Glob("*.c", strings=True) + Glob("*.cpp", strings=True)
5 env.Append(CPPPATH = ["../../include/", "../../include/monitor/"])
6 env.Append(CCFLAGS = ["-W", "-Wall", "-g", "-DAesalonMonitor"])
7 env.Append(LIBS = ["rt"])
10 targetName = test.split(".")[0]
11 env.Program(target = targetName, source = test)