-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexample_Makefile.Release
444 lines (378 loc) · 15.1 KB
/
example_Makefile.Release
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
#############################################################################
# Makefile for building: SkittleToo
# Generated by qmake (2.01a) (Qt 4.4.3) on: Wed Feb 17 18:11:03 2010
# Project: SkittleToo.pro
# Template: app
#############################################################################
####### Compiler, tools and options
CC = gcc
CXX = g++
DEFINES = -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN
CFLAGS = -O2 -Wall $(DEFINES)
CXXFLAGS = -O2 -frtti -fexceptions -Wall $(DEFINES)
INCPATH = -I"c:\Qt\include\QtCore" -I"c:\Qt\include\QtCore" -I"c:\Qt\include\QtGui" -I"c:\Qt\include\QtGui" -I"c:\Qt\include\QtOpenGL" -I"c:\Qt\include\QtOpenGL" -I"c:\Qt\include" -I"." -I"c:\Qt\include\ActiveQt" -I"release" -I"." -I"c:\Qt\mkspecs\win32-g++"
LINK = g++
LFLAGS = -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -Wl,-s -Wl -Wl,-subsystem,windows
LIBS = -L"c:\Qt\lib" -lmingw32 -lqtmain -lQtOpenGL -lglut32 -lglu32 -lopengl32 -lQtGui -lgdi32 -lcomdlg32 -loleaut32 -limm32 -lwinmm -lwinspool -lmsimg32 -lQtCore -lkernel32 -luser32 -lshell32 -luuid -lole32 -ladvapi32 -lws2_32
QMAKE = c:\Qt\bin\qmake.exe
IDC = c:\Qt\bin\idc.exe
IDL = midl
ZIP = zip -r -9
DEF_FILE =
RES_FILE =
COPY = copy /y
COPY_FILE = $(COPY)
COPY_DIR = xcopy /s /q /y /i
DEL_FILE = del
DEL_DIR = rmdir
MOVE = move
CHK_DIR_EXISTS= if not exist
MKDIR = mkdir
INSTALL_FILE = $(COPY_FILE)
INSTALL_PROGRAM = $(COPY_FILE)
INSTALL_DIR = $(COPY_DIR)
####### Output directory
OBJECTS_DIR = release
####### Files
SOURCES = AbstractGraph.cpp \
AlignmentDisplay.cpp \
AnnotationDisplay.cpp \
CylinderDisplay.cpp \
NucleotideLinker.cpp \
FastaReader.cpp \
FrequencyMap.cpp \
glwidget.cpp \
GtfReader.cpp \
main.cpp \
MainWindow.cpp \
NucleotideDisplay.cpp \
Oligomers.cpp \
TextureCanvas.cpp release\moc_AbstractGraph.cpp \
release\moc_AnnotationDisplay.cpp \
release\moc_CylinderDisplay.cpp \
release\moc_FastaReader.cpp \
release\moc_FrequencyMap.cpp \
release\moc_glwidget.cpp \
release\moc_GtfReader.cpp \
release\moc_MainWindow.cpp \
release\moc_NucleotideDisplay.cpp \
release\moc_Oligomers.cpp
OBJECTS = release/AbstractGraph.o \
release/AlignmentDisplay.o \
release/AnnotationDisplay.o \
release/CylinderDisplay.o \
release/NucleotideLinker.o \
release/FastaReader.o \
release/FrequencyMap.o \
release/glwidget.o \
release/GtfReader.o \
release/main.o \
release/MainWindow.o \
release/NucleotideDisplay.o \
release/Oligomers.o \
release/TextureCanvas.o \
release/moc_AbstractGraph.o \
release/moc_AnnotationDisplay.o \
release/moc_CylinderDisplay.o \
release/moc_FastaReader.o \
release/moc_FrequencyMap.o \
release/moc_glwidget.o \
release/moc_GtfReader.o \
release/moc_MainWindow.o \
release/moc_NucleotideDisplay.o \
release/moc_Oligomers.o
DIST =
QMAKE_TARGET = SkittleToo
DESTDIR = release\ #avoid trailing-slash linebreak
TARGET = SkittleToo.exe
DESTDIR_TARGET = release\SkittleToo.exe
####### Implicit rules
.SUFFIXES: .cpp .cc .cxx .c
.cpp.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
.cc.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
.cxx.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
.c.o:
$(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
####### Build rules
first: all
all: Makefile.Release $(DESTDIR_TARGET)
$(DESTDIR_TARGET): ui_BookmarkDialog.h $(OBJECTS)
$(LINK) $(LFLAGS) -o $(DESTDIR_TARGET) object_script.SkittleToo.Release $(LIBS)
qmake: FORCE
@$(QMAKE) -win32 -o Makefile.Release SkittleToo.pro
dist:
$(ZIP) SkittleToo.zip $(SOURCES) $(DIST) SkittleToo.pro c:\Qt\mkspecs\qconfig.pri c:\Qt\mkspecs\features\qt_functions.prf c:\Qt\mkspecs\features\qt_config.prf c:\Qt\mkspecs\features\exclusive_builds.prf c:\Qt\mkspecs\features\default_pre.prf c:\Qt\mkspecs\features\win32\default_pre.prf c:\Qt\mkspecs\features\release.prf c:\Qt\mkspecs\features\debug_and_release.prf c:\Qt\mkspecs\features\default_post.prf c:\Qt\mkspecs\features\build_pass.prf c:\Qt\mkspecs\features\win32\rtti.prf c:\Qt\mkspecs\features\win32\exceptions.prf c:\Qt\mkspecs\features\win32\stl.prf c:\Qt\mkspecs\features\static.prf c:\Qt\mkspecs\features\warn_on.prf c:\Qt\mkspecs\features\qt.prf c:\Qt\mkspecs\features\win32\opengl.prf c:\Qt\mkspecs\features\win32\thread.prf c:\Qt\mkspecs\features\moc.prf c:\Qt\mkspecs\features\win32\windows.prf c:\Qt\mkspecs\features\resources.prf c:\Qt\mkspecs\features\uic.prf c:\Qt\mkspecs\features\yacc.prf c:\Qt\mkspecs\features\lex.prf c:\Qt\lib\qtmain.prl c:\Qt\lib\QtOpenGL.prl c:\Qt\lib\QtGui.prl c:\Qt\lib\QtCore.prl HEADERS RESOURCES IMAGES SOURCES OBJECTIVE_SOURCES FORMS YACCSOURCES YACCSOURCES LEXSOURCES
clean: compiler_clean
-$(DEL_FILE) release\AbstractGraph.o release\AlignmentDisplay.o release\AnnotationDisplay.o release\CylinderDisplay.o release\NucleotideLinker.o release\FastaReader.o release\FrequencyMap.o release\glwidget.o release\GtfReader.o release\main.o release\MainWindow.o release\NucleotideDisplay.o release\Oligomers.o release\TextureCanvas.o release\moc_AbstractGraph.o release\moc_AnnotationDisplay.o release\moc_CylinderDisplay.o release\moc_FastaReader.o release\moc_FrequencyMap.o release\moc_glwidget.o release\moc_GtfReader.o release\moc_MainWindow.o release\moc_NucleotideDisplay.o release\moc_Oligomers.o
distclean: clean
-$(DEL_FILE) $(DESTDIR_TARGET)
-$(DEL_FILE) Makefile.Release
mocclean: compiler_moc_header_clean compiler_moc_source_clean
mocables: compiler_moc_header_make_all compiler_moc_source_make_all
compiler_moc_header_make_all: release/moc_AbstractGraph.cpp release/moc_AnnotationDisplay.cpp release/moc_CylinderDisplay.cpp release/moc_FastaReader.cpp release/moc_FrequencyMap.cpp release/moc_glwidget.cpp release/moc_GtfReader.cpp release/moc_MainWindow.cpp release/moc_NucleotideDisplay.cpp release/moc_Oligomers.cpp
compiler_moc_header_clean:
-$(DEL_FILE) release\moc_AbstractGraph.cpp release\moc_AnnotationDisplay.cpp release\moc_CylinderDisplay.cpp release\moc_FastaReader.cpp release\moc_FrequencyMap.cpp release\moc_glwidget.cpp release\moc_GtfReader.cpp release\moc_MainWindow.cpp release\moc_NucleotideDisplay.cpp release\moc_Oligomers.cpp
release/moc_AbstractGraph.cpp: BasicTypes.h \
UiVariables.h \
AbstractGraph.h
C:/Qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 AbstractGraph.h -o release\moc_AbstractGraph.cpp
release/moc_AnnotationDisplay.cpp: BasicTypes.h \
AbstractGraph.h \
UiVariables.h \
AnnotationDisplay.h
C:/Qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 AnnotationDisplay.h -o release\moc_AnnotationDisplay.cpp
release/moc_CylinderDisplay.cpp: BasicTypes.h \
AbstractGraph.h \
UiVariables.h \
NucleotideLinker.h \
NucleotideLink.h \
CylinderDisplay.h
C:/Qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 CylinderDisplay.h -o release\moc_CylinderDisplay.cpp
release/moc_FastaReader.cpp: glwidget.h \
BasicTypes.h \
UiVariables.h \
NucleotideDisplay.h \
AbstractGraph.h \
TextureCanvas.h \
AlignmentDisplay.h \
FrequencyMap.h \
AnnotationDisplay.h \
CylinderDisplay.h \
NucleotideLinker.h \
NucleotideLink.h \
Oligomers.h \
FastaReader.h
C:/Qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 FastaReader.h -o release\moc_FastaReader.cpp
release/moc_FrequencyMap.cpp: BasicTypes.h \
AbstractGraph.h \
UiVariables.h \
TextureCanvas.h \
FrequencyMap.h
C:/Qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 FrequencyMap.h -o release\moc_FrequencyMap.cpp
release/moc_glwidget.cpp: BasicTypes.h \
UiVariables.h \
NucleotideDisplay.h \
AbstractGraph.h \
TextureCanvas.h \
AlignmentDisplay.h \
FrequencyMap.h \
AnnotationDisplay.h \
CylinderDisplay.h \
NucleotideLinker.h \
NucleotideLink.h \
Oligomers.h \
glwidget.h
C:/Qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 glwidget.h -o release\moc_glwidget.cpp
release/moc_GtfReader.cpp: BasicTypes.h \
UiVariables.h \
GtfReader.h
C:/Qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 GtfReader.h -o release\moc_GtfReader.cpp
release/moc_MainWindow.cpp: UiVariables.h \
MainWindow.h
C:/Qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 MainWindow.h -o release\moc_MainWindow.cpp
release/moc_NucleotideDisplay.cpp: BasicTypes.h \
AbstractGraph.h \
UiVariables.h \
TextureCanvas.h \
AlignmentDisplay.h \
NucleotideDisplay.h
C:/Qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 NucleotideDisplay.h -o release\moc_NucleotideDisplay.cpp
release/moc_Oligomers.cpp: BasicTypes.h \
FrequencyMap.h \
AbstractGraph.h \
UiVariables.h \
TextureCanvas.h \
Oligomers.h
C:/Qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 Oligomers.h -o release\moc_Oligomers.cpp
compiler_rcc_make_all:
compiler_rcc_clean:
compiler_image_collection_make_all: qmake_image_collection.cpp
compiler_image_collection_clean:
-$(DEL_FILE) qmake_image_collection.cpp
compiler_moc_source_make_all:
compiler_moc_source_clean:
compiler_uic_make_all: ui_BookmarkDialog.h
compiler_uic_clean:
-$(DEL_FILE) ui_BookmarkDialog.h
ui_BookmarkDialog.h: BookmarkDialog.ui
c:\Qt\bin\uic.exe BookmarkDialog.ui -o ui_BookmarkDialog.h
compiler_yacc_decl_make_all:
compiler_yacc_decl_clean:
compiler_yacc_impl_make_all:
compiler_yacc_impl_clean:
compiler_lex_make_all:
compiler_lex_clean:
compiler_clean: compiler_moc_header_clean compiler_uic_clean
####### Compile
release/AbstractGraph.o: AbstractGraph.cpp AbstractGraph.h \
BasicTypes.h \
UiVariables.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\AbstractGraph.o AbstractGraph.cpp
release/AlignmentDisplay.o: AlignmentDisplay.cpp AlignmentDisplay.h \
BasicTypes.h \
UiVariables.h \
AbstractGraph.h \
TextureCanvas.h \
glwidget.h \
NucleotideDisplay.h \
FrequencyMap.h \
AnnotationDisplay.h \
CylinderDisplay.h \
NucleotideLinker.h \
NucleotideLink.h \
Oligomers.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\AlignmentDisplay.o AlignmentDisplay.cpp
release/AnnotationDisplay.o: AnnotationDisplay.cpp AnnotationDisplay.h \
BasicTypes.h \
AbstractGraph.h \
UiVariables.h \
glwidget.h \
NucleotideDisplay.h \
TextureCanvas.h \
AlignmentDisplay.h \
FrequencyMap.h \
CylinderDisplay.h \
NucleotideLinker.h \
NucleotideLink.h \
Oligomers.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\AnnotationDisplay.o AnnotationDisplay.cpp
release/CylinderDisplay.o: CylinderDisplay.cpp CylinderDisplay.h \
BasicTypes.h \
AbstractGraph.h \
UiVariables.h \
NucleotideLinker.h \
NucleotideLink.h \
glwidget.h \
NucleotideDisplay.h \
TextureCanvas.h \
AlignmentDisplay.h \
FrequencyMap.h \
AnnotationDisplay.h \
Oligomers.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\CylinderDisplay.o CylinderDisplay.cpp
release/NucleotideLinker.o: NucleotideLinker.cpp NucleotideLinker.h \
NucleotideLink.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\NucleotideLinker.o NucleotideLinker.cpp
release/FastaReader.o: FastaReader.cpp FastaReader.h \
glwidget.h \
BasicTypes.h \
UiVariables.h \
NucleotideDisplay.h \
AbstractGraph.h \
TextureCanvas.h \
AlignmentDisplay.h \
FrequencyMap.h \
AnnotationDisplay.h \
CylinderDisplay.h \
NucleotideLinker.h \
NucleotideLink.h \
Oligomers.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\FastaReader.o FastaReader.cpp
release/FrequencyMap.o: FrequencyMap.cpp FrequencyMap.h \
BasicTypes.h \
AbstractGraph.h \
UiVariables.h \
TextureCanvas.h \
glwidget.h \
NucleotideDisplay.h \
AlignmentDisplay.h \
AnnotationDisplay.h \
CylinderDisplay.h \
NucleotideLinker.h \
NucleotideLink.h \
Oligomers.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\FrequencyMap.o FrequencyMap.cpp
release/glwidget.o: glwidget.cpp glwidget.h \
BasicTypes.h \
UiVariables.h \
NucleotideDisplay.h \
AbstractGraph.h \
TextureCanvas.h \
AlignmentDisplay.h \
FrequencyMap.h \
AnnotationDisplay.h \
CylinderDisplay.h \
NucleotideLinker.h \
NucleotideLink.h \
Oligomers.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\glwidget.o glwidget.cpp
release/GtfReader.o: GtfReader.cpp GtfReader.h \
BasicTypes.h \
UiVariables.h \
NucleotideDisplay.h \
AbstractGraph.h \
TextureCanvas.h \
AlignmentDisplay.h \
ui_BookmarkDialog.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\GtfReader.o GtfReader.cpp
release/main.o: main.cpp MainWindow.h \
UiVariables.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\main.o main.cpp
release/MainWindow.o: MainWindow.cpp MainWindow.h \
UiVariables.h \
FastaReader.h \
glwidget.h \
BasicTypes.h \
NucleotideDisplay.h \
AbstractGraph.h \
TextureCanvas.h \
AlignmentDisplay.h \
FrequencyMap.h \
AnnotationDisplay.h \
CylinderDisplay.h \
NucleotideLinker.h \
NucleotideLink.h \
Oligomers.h \
GtfReader.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\MainWindow.o MainWindow.cpp
release/NucleotideDisplay.o: NucleotideDisplay.cpp NucleotideDisplay.h \
BasicTypes.h \
AbstractGraph.h \
UiVariables.h \
TextureCanvas.h \
AlignmentDisplay.h \
glwidget.h \
FrequencyMap.h \
AnnotationDisplay.h \
CylinderDisplay.h \
NucleotideLinker.h \
NucleotideLink.h \
Oligomers.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\NucleotideDisplay.o NucleotideDisplay.cpp
release/Oligomers.o: Oligomers.cpp Oligomers.h \
BasicTypes.h \
FrequencyMap.h \
AbstractGraph.h \
UiVariables.h \
TextureCanvas.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\Oligomers.o Oligomers.cpp
release/TextureCanvas.o: TextureCanvas.cpp TextureCanvas.h \
BasicTypes.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\TextureCanvas.o TextureCanvas.cpp
release/moc_AbstractGraph.o: release/moc_AbstractGraph.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_AbstractGraph.o release\moc_AbstractGraph.cpp
release/moc_AnnotationDisplay.o: release/moc_AnnotationDisplay.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_AnnotationDisplay.o release\moc_AnnotationDisplay.cpp
release/moc_CylinderDisplay.o: release/moc_CylinderDisplay.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_CylinderDisplay.o release\moc_CylinderDisplay.cpp
release/moc_FastaReader.o: release/moc_FastaReader.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_FastaReader.o release\moc_FastaReader.cpp
release/moc_FrequencyMap.o: release/moc_FrequencyMap.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_FrequencyMap.o release\moc_FrequencyMap.cpp
release/moc_glwidget.o: release/moc_glwidget.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_glwidget.o release\moc_glwidget.cpp
release/moc_GtfReader.o: release/moc_GtfReader.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_GtfReader.o release\moc_GtfReader.cpp
release/moc_MainWindow.o: release/moc_MainWindow.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_MainWindow.o release\moc_MainWindow.cpp
release/moc_NucleotideDisplay.o: release/moc_NucleotideDisplay.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_NucleotideDisplay.o release\moc_NucleotideDisplay.cpp
release/moc_Oligomers.o: release/moc_Oligomers.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_Oligomers.o release\moc_Oligomers.cpp
####### Install
install: FORCE
uninstall: FORCE
FORCE: