-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.windows
96 lines (70 loc) · 2.61 KB
/
Makefile.windows
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#------------------------------------------------------------------------------#
# This makefile was generated by 'cbp2make' tool rev.147 #
#------------------------------------------------------------------------------#
WORKDIR = %cd%
CC = gcc.exe
CXX = g++.exe
AR = ar.exe
LD = g++.exe
WINDRES = windres.exe
INC =
CFLAGS = -Wall -fexceptions -lSDL2
RESINC =
LIBDIR =
LIB = C:\\Windows\\System32\\ole32.dll C:\\Windows\\System32\\comdlg32.dll
LDFLAGS = -lSDL2 -lSDL2main
INC_DEBUG = $(INC)
CFLAGS_DEBUG = $(CFLAGS) -g
RESINC_DEBUG = $(RESINC)
RCFLAGS_DEBUG = $(RCFLAGS)
LIBDIR_DEBUG = $(LIBDIR)
LIB_DEBUG = $(LIB)
LDFLAGS_DEBUG = $(LDFLAGS)
OBJDIR_DEBUG = obj\\Debug
DEP_DEBUG =
OUT_DEBUG = bin\\Debug\\chipdu3_plusplus.exe
INC_RELEASE = $(INC)
CFLAGS_RELEASE = $(CFLAGS) -O2
RESINC_RELEASE = $(RESINC)
RCFLAGS_RELEASE = $(RCFLAGS)
LIBDIR_RELEASE = $(LIBDIR)
LIB_RELEASE = $(LIB)
LDFLAGS_RELEASE = -s $(LDFLAGS)
OBJDIR_RELEASE = obj\\Release
DEP_RELEASE =
OUT_RELEASE = bin\\Release\\chipdu3_plusplus.exe
OBJ_DEBUG = $(OBJDIR_DEBUG)\\chipdu.o $(OBJDIR_DEBUG)\\main.o
OBJ_RELEASE = $(OBJDIR_RELEASE)\\chipdu.o $(OBJDIR_RELEASE)\\main.o
all: debug release
clean: clean_debug clean_release
before_debug:
cmd /c if not exist bin\\Debug md bin\\Debug
cmd /c if not exist $(OBJDIR_DEBUG) md $(OBJDIR_DEBUG)
after_debug:
debug: before_debug out_debug after_debug
out_debug: before_debug $(OBJ_DEBUG) $(DEP_DEBUG)
$(LD) $(LIBDIR_DEBUG) -o $(OUT_DEBUG) $(OBJ_DEBUG) $(LDFLAGS_DEBUG) $(LIB_DEBUG)
$(OBJDIR_DEBUG)\\chipdu.o: chipdu.cpp
$(CXX) $(CFLAGS_DEBUG) $(INC_DEBUG) -c chipdu.cpp -o $(OBJDIR_DEBUG)\\chipdu.o
$(OBJDIR_DEBUG)\\main.o: main.cpp
$(CXX) $(CFLAGS_DEBUG) $(INC_DEBUG) -c main.cpp -o $(OBJDIR_DEBUG)\\main.o
clean_debug:
cmd /c del /f $(OBJ_DEBUG) $(OUT_DEBUG)
cmd /c rd bin\\Debug
cmd /c rd $(OBJDIR_DEBUG)
before_release:
cmd /c if not exist bin\\Release md bin\\Release
cmd /c if not exist $(OBJDIR_RELEASE) md $(OBJDIR_RELEASE)
after_release:
release: before_release out_release after_release
out_release: before_release $(OBJ_RELEASE) $(DEP_RELEASE)
$(LD) $(LIBDIR_RELEASE) -o $(OUT_RELEASE) $(OBJ_RELEASE) $(LDFLAGS_RELEASE) $(LIB_RELEASE)
$(OBJDIR_RELEASE)\\chipdu.o: chipdu.cpp
$(CXX) $(CFLAGS_RELEASE) $(INC_RELEASE) -c chipdu.cpp -o $(OBJDIR_RELEASE)\\chipdu.o
$(OBJDIR_RELEASE)\\main.o: main.cpp
$(CXX) $(CFLAGS_RELEASE) $(INC_RELEASE) -c main.cpp -o $(OBJDIR_RELEASE)\\main.o
clean_release:
cmd /c del /f $(OBJ_RELEASE) $(OUT_RELEASE)
cmd /c rd bin\\Release
cmd /c rd $(OBJDIR_RELEASE)
.PHONY: before_debug after_debug clean_debug before_release after_release clean_release