-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
36 lines (27 loc) · 867 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Set the main compiler here. Options e.g.: 'gcc', 'g++'
CC := g++
# Special directories
SRCDIR := src
BUILDDIR := build
TARGET := run-analysis
SRCEXT := cpp
SOURCES := $(shell find $(SRCDIR) -type f -name *.$(SRCEXT))
OBJECTS := $(patsubst $(SRCDIR)/%,$(BUILDDIR)/%,$(SOURCES:.$(SRCEXT)=.o))
# use -ggdb for GNU debugger
# CFLAGS := -g -ggdb -gdwarf-2 -Wall -Wno-comment -std=c++11
CFLAGS := -O3 -Wall -Wno-comment -std=c++11
LIB := -lm
INC := -Iinclude
#all: $(TARGET) $(TARGET)
all: $(TARGET)
@echo " Doing nothing..."
$(TARGET): $(OBJECTS)
@echo " Linking..."
@echo " $(CC) $^ -o $(TARGET) $(LIB)"; $(CC) $^ -o $(TARGET) $(LIB)
$(BUILDDIR)/%.o: $(SRCDIR)/%.$(SRCEXT)
@mkdir -p $(BUILDDIR)
@echo " $(CC) $(CFLAGS) $(INC) -c -o $@ $<"; $(CC) $(CFLAGS) $(INC) -c -o $@ $<
clean:
@echo " Cleaning...";
$(RM) -r $(BUILDDIR) $(TARGET) *~
.PHONY: clean