summaryrefslogtreecommitdiffstats
path: root/tools/configure/Makefile.mingw
blob: 5951cb4e922f25e5636c26de8a416b48286716bb (plain)
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
CORESRC = $(QTSRC)src/corelib
TOOLSRC = $(QTSRC)tools
CONFSRC = $(TOOLSRC)/configure

RAW_PCH       = configure_pch.h
PCH           = $(RAW_PCH).gch/c++
CXX           = g++
DEFINES       = -DUNICODE -DQT_NODLL -DQT_NO_DATASTREAM -DQT_NO_CODECS -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_LITE_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT -D_CRT_SECURE_NO_DEPRECATE -DQT_BOOTSTRAPPED -DCOMMERCIAL_VERSION
INCPATH       = -I"../../include" -I"../../include/QtCore" -I"../../include/QtCore/$(QTVERSION)" -I"../../include/QtCore/$(QTVERSION)/QtCore" -I"$(TOOLSRC)/shared" -I"$(QTSRC)mkspecs/win32-g++"
CXXFLAGS_BARE = -fno-rtti -fno-exceptions -mthreads -Wall -Wextra $(DEFINES) $(INCPATH)
CXXFLAGS      = -include $(RAW_PCH) $(CXXFLAGS_BARE)
LINK          = g++
LFLAGS        = -Wl,-subsystem,console -mthreads
LIBS          = -lole32 -ladvapi32 -luuid

TARGET        = ../../configure.exe

OBJECTS = \
    main.o \
    configureapp.o \
    environment.o \
    tools.o \
    qbytearray.o \
    qbytearraymatcher.o \
    qhash.o \
    qlist.o \
    qlocale.o \
    qlocale_win.o \
    qlocale_tools.o \
    qvector.o \
    qutfcodec.o \
    qtextcodec.o \
    qglobal.o \
    qnumeric.o \
    qbuffer.o \
    qdatastream.o \
    qdir.o \
    qdiriterator.o \
    qfile.o \
    qfileinfo.o \
    qabstractfileengine.o \
    qfilesystementry.o \
    qfilesystemengine.o \
    qfilesystemengine_win.o \
    qfilesystemiterator_win.o \
    qfsfileengine.o \
    qfsfileengine_win.o \
    qfsfileengine_iterator.o \
    qiodevice.o \
    qtextstream.o \
    qlogging.o \
    qtemporaryfile.o \
    qsystemlibrary.o \
    qbitarray.o \
    qdatetime.o \
    qmap.o \
    qregexp.o \
    qstring.o \
    qstringlist.o \
    qvsnprintf.o \
    qvariant.o \
    qsystemerror.o \
    qurl.o \
    qmetatype.o \
    qmalloc.o \
    qxmlstream.o \
    qxmlutils.o \
    quuid.o \
    qcryptographichash.o \
    registry.o

$(TARGET): $(OBJECTS)
	$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(LIBS)

$(OBJECTS): $(PCH)

CHK_DIR_EXISTS = test -d
MKDIR=mkdir -p
$(PCH): $(CONFSRC)/configure_pch.h
	@$(CHK_DIR_EXISTS) $(RAW_PCH).gch || $(MKDIR) $(RAW_PCH).gch
	$(CXX) -x c++-header -c $(CXXFLAGS_BARE) -o $@ $<

VPATH = $(CONFSRC):$(TOOLSRC)/shared/windows:$(CORESRC)/global:$(CORESRC)/kernel:$(CORESRC)/tools:$(CORESRC)/codecs:$(CORESRC)/io:$(CORESRC)/xml:$(CORESRC)/plugin

main.o: $(CONFSRC)/configureapp.h
configureapp.o: $(CONFSRC)/configureapp.h $(CONFSRC)/environment.h $(CONFSRC)/tools.h
environment.o: $(CONFSRC)/environment.h
tools.o: $(CONFSRC)/tools.h

clean:
	-rm -f *.o
	-rm -rf *.gch