-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile~
44 lines (43 loc) · 1.19 KB
/
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
37
38
39
40
41
42
43
44
## -*- Makefile -*-
##
## User: matthew
## Time: Jun 25, 2015 9:07:06 AM
## Makefile created by Oracle Solaris Studio.
##
## This file is generated automatically.
##
#### Compiler and tool definitions shared by all build targets #####
CCC = g++
CXX = g++
BASICOPTS = -g -s -m64
CCFLAGS = -std=c++11
CXXFLAGS = -g -pthread -std=c++11 $(EXTRA_CXXFLAGS)
CCADMIN =
# Define the target directories.
TARGETDIR_mas=bin
all: $(TARGETDIR_mas)/mas
## Target: mas
OBJS_mas = \
$(TARGETDIR_mas)/main.o
USERLIBS_mas = $(SYSLIBS_mas)
DEPLIBS_mas =
LDLIBS_mas = $(USERLIBS_mas)
# Link or archive
$(TARGETDIR_mas)/mas: $(TARGETDIR_mas) $(OBJS_mas) $(DEPLIBS_mas)
$(LINK.cc) $(CCFLAGS_mas) $(CPPFLAGS_mas) -o $@ $(OBJS_mas) $(LDLIBS_mas)
# Compile source files into .o files
$(TARGETDIR_mas)/main.o: $(TARGETDIR_mas) main.cpp
$(COMPILE.cc) $(CCFLAGS_mas) $(CPPFLAGS_mas) -o $@ main.cpp
#### Clean target deletes all generated files ####
clean:
rm -f \
$(TARGETDIR_mas)/mas \
$(TARGETDIR_mas)/mas.o
$(CCADMIN)
rm -f -r $(TARGETDIR_mas)
# Create the target directory (if needed)
$(TARGETDIR_mas):
mkdir -p $(TARGETDIR_mas)
# Enable dependency checking
.KEEP_STATE:
.KEEP_STATE_FILE:.make.state.GNU-amd64-Linux