-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile
45 lines (36 loc) · 935 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
37
38
39
40
41
42
43
44
45
PROJ = vgx-demo
##########################################
# Toolchain Settings
##########################################
CC = g++
DBG = gdb
##########################################
# Files
##########################################
DIRS := $(wildcard */)
SRCS := $(wildcard $(addsuffix *.cpp,$(DIRS)))
OBJS := $(patsubst %.cpp,%.o,$(SRCS))
##########################################
# Includes
##########################################
INCLUDES = vgx
LIBS =
##########################################
# Flag Settings
##########################################
CCFLAGS = -I$(INCLUDES) -g -Wall -O0 -std=gnu++0x
LDFLAGS = -g $(LIBS)
##########################################
# Targets
##########################################
all: $(PROJ)
$(PROJ): $(OBJS)
@$(CC) $(OBJS) $(LDFLAGS) -o $(PROJ)
@echo $@
%.o: %.cpp
$(CC) -c $(CCFLAGS) $< -o $@
clean:
rm -f $(OBJS)
rm -f $(PROJ_NAME)
debug:
$(DBG) $(PROJ_NAME)