-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
46 lines (34 loc) · 801 Bytes
/
Makefile
File metadata and controls
46 lines (34 loc) · 801 Bytes
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
37
38
39
40
41
42
43
44
45
46
# executable name
TARGET=hroch.bin
# directories
SRCDIR=src
OBJDIR=obj
BINDIR=./
# sources
SOURCES = $(wildcard $(SRCDIR)/*.cpp)
INCLUDES= $(wildcard $(SRCDIR)/*.h)
OBJECTS = $(SOURCES:$(SRCDIR)/%.cpp=$(OBJDIR)/%.o)
# compiler and flags
CXX=g++
CXXFLAGS=-std=gnu++11 -O2 -static
RM=rm
WFLAGS=-Wall -Wextra -Wno-unused-result
#-g -pg -static
# commands
all: $(BINDIR)/$(TARGET) outputs
$(BINDIR)/$(TARGET): $(OBJECTS)
$(CXX) -o $@ $(WFLAGS) $(OBJECTS)
@echo "Done."
$(OBJECTS): $(OBJDIR)/%.o : $(SRCDIR)/%.cpp $(INCLUDES)
$(CXX) $(CXXFLAGS) $(WFLAGS) -c $< -o $@
@echo "Compiled "$<" successfully."
server: all
scp -r Makefile src bio:dups/
outputs:
mkdir -p outputs
clean:
$(RM) $(OBJECTS)
@echo "Clean complete."
remove: clean
$(RM) $(BINDIR)/$(TARGET)
@echo "Remove complete."