1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
cdt/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/MakefileHelloWorldCCProject/Makefile

15 lines
211 B
Makefile

CXXFLAGS = -O2 -g -Wall -fmessage-length=0
OBJS = {{baseName}}.o
LIBS =
TARGET = {{baseName}}{{exe}}
$(TARGET): $(OBJS)
$(CXX) -o $(TARGET) $(OBJS) $(LIBS)
all: $(TARGET)
clean:
rm -f $(OBJS) $(TARGET)