9 lines
145 B
Makefile
9 lines
145 B
Makefile
LEVEL = ../../../make
|
|
|
|
CXX_SOURCES := main.cpp
|
|
CFLAGS :=-g -O0 -std=c++11
|
|
|
|
clean: OBJECTS+=$(wildcard main.d.*)
|
|
|
|
include $(LEVEL)/Makefile.rules
|