mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
15 lines
211 B
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)
|