|
@@
-12,13
+12,13
MAKEFILE = Makefile
|
|
12
|
|
|
12
|
|
|
13
|
CC = gcc
|
|
13
|
CC = gcc
|
|
14
|
CXX = g++
|
|
14
|
CXX = g++
|
|
15
|
DEFINES = -DWFDISPLAY_LIBRARY -DQT_NO_DEBUG -DQT_PRINTSUPPORT_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_GUI_LIB -DQT_CORE_LIB
|
|
15
|
DEFINES = -DQT_NO_DEBUG -DQT_PRINTSUPPORT_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_GUI_LIB -DQT_CORE_LIB
|
|
16
|
CFLAGS = -m64 -pipe -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -O2 -Wall -W -D_REENTRANT -fPIC $(DEFINES)
|
|
16
|
CFLAGS = -m64 -pipe -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -O2 -Wall -W -D_REENTRANT -fPIC $(DEFINES)
|
|
17
|
CXXFLAGS = -m64 -pipe -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -O2 -Wall -W -D_REENTRANT -fPIC $(DEFINES)
|
|
17
|
CXXFLAGS = -m64 -pipe -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -O2 -Wall -W -D_REENTRANT -fPIC $(DEFINES)
|
|
18
|
INCPATH = -I/usr/lib64/qt5/mkspecs/linux-g++-64 -I. -I. -I/usr/include/qt5/lppmon/common -I/usr/include/qt5 -I/usr/include/qt5/QtPrintSupport -I/usr/include/qt5/QtSvg -I/usr/include/qt5/QtWidgets -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/usr/include/qt5/QtGui -I/usr/include/qt5/QtCore -I.
|
|
18
|
INCPATH = -I/usr/lib64/qt5/mkspecs/linux-g++-64 -I. -I. -I/usr/include/qt5/lppmon/common -I/usr/include/qt5 -I/usr/include/qt5/QtPrintSupport -I/usr/include/qt5/QtSvg -I/usr/include/qt5/QtWidgets -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/usr/include/qt5/QtGui -I/usr/include/qt5/QtCore -Imoc
|
|
19
|
LINK = g++
|
|
19
|
LINK = g++
|
|
20
|
LFLAGS = -m64 -Wl,-O1 -Wl,-z,relro -shared -Wl,-soname,libwfdisplay.so.1
|
|
20
|
LFLAGS = -m64 -Wl,-O1 -Wl,-z,relro --enable-auto-import -shared -Wl,-soname,libwfdisplay.so.1
|
|
21
|
LIBS = $(SUBLIBS) -L/usr/X11R6/lib64 -llppmoncommon -lQt5PrintSupport -lQt5Svg -lQt5Widgets -lQt5Network -lQt5Xml -lQt5Gui -lQt5Core -lGL -lpthread
|
|
21
|
LIBS = $(SUBLIBS) -L/usr/X11R6/lib64 -lelf -llppmoncommon -lQt5PrintSupport -lQt5Svg -lQt5Widgets -lQt5Network -lQt5Xml -lQt5Gui -lQt5Core -lGL -lpthread
|
|
22
|
AR = ar cqs
|
|
22
|
AR = ar cqs
|
|
23
|
RANLIB =
|
|
23
|
RANLIB =
|
|
24
|
QMAKE = /usr/bin/qmake-qt5
|
|
24
|
QMAKE = /usr/bin/qmake-qt5
|
|
@@
-41,7
+41,7
MKDIR = mkdir -p
|
|
41
|
|
|
41
|
|
|
42
|
####### Output directory
|
|
42
|
####### Output directory
|
|
43
|
|
|
43
|
|
|
44
|
OBJECTS_DIR = ./
|
|
44
|
OBJECTS_DIR = obj/
|
|
45
|
|
|
45
|
|
|
46
|
####### Files
|
|
46
|
####### Files
|
|
47
|
|
|
47
|
|
|
@@
-49,21
+49,21
SOURCES = wfdisplay.cpp \
|
|
49
|
wfplot.cpp \
|
|
49
|
wfplot.cpp \
|
|
50
|
wfpage.cpp \
|
|
50
|
wfpage.cpp \
|
|
51
|
pagespectra.cpp \
|
|
51
|
pagespectra.cpp \
|
|
52
|
asmpage.cpp moc_wfdisplay.cpp \
|
|
52
|
asmpage.cpp moc/moc_wfdisplay.cpp \
|
|
53
|
moc_wfplot.cpp \
|
|
53
|
moc/moc_wfplot.cpp \
|
|
54
|
moc_wfpage.cpp \
|
|
54
|
moc/moc_wfpage.cpp \
|
|
55
|
moc_pagespectra.cpp \
|
|
55
|
moc/moc_pagespectra.cpp \
|
|
56
|
moc_asmpage.cpp
|
|
56
|
moc/moc_asmpage.cpp
|
|
57
|
OBJECTS = wfdisplay.o \
|
|
57
|
OBJECTS = obj/wfdisplay.o \
|
|
58
|
wfplot.o \
|
|
58
|
obj/wfplot.o \
|
|
59
|
wfpage.o \
|
|
59
|
obj/wfpage.o \
|
|
60
|
pagespectra.o \
|
|
60
|
obj/pagespectra.o \
|
|
61
|
asmpage.o \
|
|
61
|
obj/asmpage.o \
|
|
62
|
moc_wfdisplay.o \
|
|
62
|
obj/moc_wfdisplay.o \
|
|
63
|
moc_wfplot.o \
|
|
63
|
obj/moc_wfplot.o \
|
|
64
|
moc_wfpage.o \
|
|
64
|
obj/moc_wfpage.o \
|
|
65
|
moc_pagespectra.o \
|
|
65
|
obj/moc_pagespectra.o \
|
|
66
|
moc_asmpage.o
|
|
66
|
obj/moc_asmpage.o
|
|
67
|
DIST = /usr/lib64/qt5/mkspecs/features/spec_pre.prf \
|
|
67
|
DIST = /usr/lib64/qt5/mkspecs/features/spec_pre.prf \
|
|
68
|
/usr/lib64/qt5/mkspecs/common/shell-unix.conf \
|
|
68
|
/usr/lib64/qt5/mkspecs/common/shell-unix.conf \
|
|
69
|
/usr/lib64/qt5/mkspecs/common/unix.conf \
|
|
69
|
/usr/lib64/qt5/mkspecs/common/unix.conf \
|
|
@@
-420,8
+420,8
qmake: FORCE
|
|
420
|
qmake_all: FORCE
|
|
420
|
qmake_all: FORCE
|
|
421
|
|
|
421
|
|
|
422
|
dist:
|
|
422
|
dist:
|
|
423
|
@test -d .tmp/wfdisplay1.0.0 || mkdir -p .tmp/wfdisplay1.0.0
|
|
423
|
@test -d obj/wfdisplay1.0.0 || mkdir -p obj/wfdisplay1.0.0
|
|
424
|
$(COPY_FILE) --parents $(SOURCES) $(DIST) .tmp/wfdisplay1.0.0/ && $(COPY_FILE) --parents wfdisplay.h wfplot.h wfpage.h wfdisplay_params.h pagespectra.h asmpage.h .tmp/wfdisplay1.0.0/ && $(COPY_FILE) --parents wfdisplay.cpp wfplot.cpp wfpage.cpp pagespectra.cpp asmpage.cpp .tmp/wfdisplay1.0.0/ && (cd `dirname .tmp/wfdisplay1.0.0` && $(TAR) wfdisplay1.0.0.tar wfdisplay1.0.0 && $(COMPRESS) wfdisplay1.0.0.tar) && $(MOVE) `dirname .tmp/wfdisplay1.0.0`/wfdisplay1.0.0.tar.gz . && $(DEL_FILE) -r .tmp/wfdisplay1.0.0
|
|
424
|
$(COPY_FILE) --parents $(SOURCES) $(DIST) obj/wfdisplay1.0.0/ && $(COPY_FILE) --parents wfdisplay.h wfplot.h wfpage.h wfdisplay_params.h pagespectra.h asmpage.h obj/wfdisplay1.0.0/ && $(COPY_FILE) --parents wfdisplay.cpp wfplot.cpp wfpage.cpp pagespectra.cpp asmpage.cpp obj/wfdisplay1.0.0/ && (cd `dirname obj/wfdisplay1.0.0` && $(TAR) wfdisplay1.0.0.tar wfdisplay1.0.0 && $(COMPRESS) wfdisplay1.0.0.tar) && $(MOVE) `dirname obj/wfdisplay1.0.0`/wfdisplay1.0.0.tar.gz . && $(DEL_FILE) -r obj/wfdisplay1.0.0
|
|
425
|
|
|
425
|
|
|
426
|
|
|
426
|
|
|
427
|
clean:compiler_clean
|
|
427
|
clean:compiler_clean
|
|
@@
-445,10
+445,10
check: first
|
|
445
|
|
|
445
|
|
|
446
|
compiler_rcc_make_all:
|
|
446
|
compiler_rcc_make_all:
|
|
447
|
compiler_rcc_clean:
|
|
447
|
compiler_rcc_clean:
|
|
448
|
compiler_moc_header_make_all: moc_wfdisplay.cpp moc_wfplot.cpp moc_wfpage.cpp moc_pagespectra.cpp moc_asmpage.cpp
|
|
448
|
compiler_moc_header_make_all: moc/moc_wfdisplay.cpp moc/moc_wfplot.cpp moc/moc_wfpage.cpp moc/moc_pagespectra.cpp moc/moc_asmpage.cpp
|
|
449
|
compiler_moc_header_clean:
|
|
449
|
compiler_moc_header_clean:
|
|
450
|
-$(DEL_FILE) moc_wfdisplay.cpp moc_wfplot.cpp moc_wfpage.cpp moc_pagespectra.cpp moc_asmpage.cpp
|
|
450
|
-$(DEL_FILE) moc/moc_wfdisplay.cpp moc/moc_wfplot.cpp moc/moc_wfpage.cpp moc/moc_pagespectra.cpp moc/moc_asmpage.cpp
|
|
451
|
moc_wfdisplay.cpp: /usr/include/qt5/QtWidgets/QWidget \
|
|
451
|
moc/moc_wfdisplay.cpp: /usr/include/qt5/QtWidgets/QWidget \
|
|
452
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
452
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
453
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
453
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
454
|
/usr/include/qt5/QtCore/qglobal.h \
|
|
454
|
/usr/include/qt5/QtCore/qglobal.h \
|
|
@@
-934,9
+934,9
moc_wfdisplay.cpp: /usr/include/qt5/QtWi
|
|
934
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
934
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
935
|
wfdisplay_params.h \
|
|
935
|
wfdisplay_params.h \
|
|
936
|
wfdisplay.h
|
|
936
|
wfdisplay.h
|
|
937
|
/usr/lib64/qt5/bin/moc $(DEFINES) $(INCPATH) -I/usr/lib/gcc/include/c++/4.8.2 -I/usr/lib/gcc/include/c++/4.8.2/x86_64-redhat-linux -I/usr/lib/gcc/include/c++/4.8.2/backward -I/usr/lib/gcc/x86_64-redhat-linux/4.8.2/include -I/usr/local/include -I/usr/include wfdisplay.h -o moc_wfdisplay.cpp
|
|
937
|
/usr/lib64/qt5/bin/moc $(DEFINES) $(INCPATH) -I/usr/lib/gcc/include/c++/4.8.2 -I/usr/lib/gcc/include/c++/4.8.2/x86_64-redhat-linux -I/usr/lib/gcc/include/c++/4.8.2/backward -I/usr/lib/gcc/x86_64-redhat-linux/4.8.2/include -I/usr/local/include -I/usr/include wfdisplay.h -o moc/moc_wfdisplay.cpp
|
|
938
|
|
|
938
|
|
|
939
|
moc_wfplot.cpp: /usr/include/qt5/QtWidgets/QWidget \
|
|
939
|
moc/moc_wfplot.cpp: /usr/include/qt5/QtWidgets/QWidget \
|
|
940
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
940
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
941
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
941
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
942
|
/usr/include/qt5/QtCore/qglobal.h \
|
|
942
|
/usr/include/qt5/QtCore/qglobal.h \
|
|
@@
-1408,9
+1408,9
moc_wfplot.cpp: /usr/include/qt5/QtWidge
|
|
1408
|
/usr/include/qt5/QtPrintSupport/qprintpreviewwidget.h \
|
|
1408
|
/usr/include/qt5/QtPrintSupport/qprintpreviewwidget.h \
|
|
1409
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
1409
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
1410
|
wfplot.h
|
|
1410
|
wfplot.h
|
|
1411
|
/usr/lib64/qt5/bin/moc $(DEFINES) $(INCPATH) -I/usr/lib/gcc/include/c++/4.8.2 -I/usr/lib/gcc/include/c++/4.8.2/x86_64-redhat-linux -I/usr/lib/gcc/include/c++/4.8.2/backward -I/usr/lib/gcc/x86_64-redhat-linux/4.8.2/include -I/usr/local/include -I/usr/include wfplot.h -o moc_wfplot.cpp
|
|
1411
|
/usr/lib64/qt5/bin/moc $(DEFINES) $(INCPATH) -I/usr/lib/gcc/include/c++/4.8.2 -I/usr/lib/gcc/include/c++/4.8.2/x86_64-redhat-linux -I/usr/lib/gcc/include/c++/4.8.2/backward -I/usr/lib/gcc/x86_64-redhat-linux/4.8.2/include -I/usr/local/include -I/usr/include wfplot.h -o moc/moc_wfplot.cpp
|
|
1412
|
|
|
1412
|
|
|
1413
|
moc_wfpage.cpp: /usr/include/qt5/QtWidgets/QMainWindow \
|
|
1413
|
moc/moc_wfpage.cpp: /usr/include/qt5/QtWidgets/QMainWindow \
|
|
1414
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
|
1414
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
|
1415
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
1415
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
1416
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
1416
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
@@
-1894,9
+1894,9
moc_wfpage.cpp: /usr/include/qt5/QtWidge
|
|
1894
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
1894
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
1895
|
wfdisplay_params.h \
|
|
1895
|
wfdisplay_params.h \
|
|
1896
|
wfpage.h
|
|
1896
|
wfpage.h
|
|
1897
|
/usr/lib64/qt5/bin/moc $(DEFINES) $(INCPATH) -I/usr/lib/gcc/include/c++/4.8.2 -I/usr/lib/gcc/include/c++/4.8.2/x86_64-redhat-linux -I/usr/lib/gcc/include/c++/4.8.2/backward -I/usr/lib/gcc/x86_64-redhat-linux/4.8.2/include -I/usr/local/include -I/usr/include wfpage.h -o moc_wfpage.cpp
|
|
1897
|
/usr/lib64/qt5/bin/moc $(DEFINES) $(INCPATH) -I/usr/lib/gcc/include/c++/4.8.2 -I/usr/lib/gcc/include/c++/4.8.2/x86_64-redhat-linux -I/usr/lib/gcc/include/c++/4.8.2/backward -I/usr/lib/gcc/x86_64-redhat-linux/4.8.2/include -I/usr/local/include -I/usr/include wfpage.h -o moc/moc_wfpage.cpp
|
|
1898
|
|
|
1898
|
|
|
1899
|
moc_pagespectra.cpp: /usr/include/qt5/QtWidgets/QMainWindow \
|
|
1899
|
moc/moc_pagespectra.cpp: /usr/include/qt5/QtWidgets/QMainWindow \
|
|
1900
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
|
1900
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
|
1901
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
1901
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
1902
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
1902
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
@@
-2380,9
+2380,9
moc_pagespectra.cpp: /usr/include/qt5/Qt
|
|
2380
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
2380
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
2381
|
wfdisplay_params.h \
|
|
2381
|
wfdisplay_params.h \
|
|
2382
|
pagespectra.h
|
|
2382
|
pagespectra.h
|
|
2383
|
/usr/lib64/qt5/bin/moc $(DEFINES) $(INCPATH) -I/usr/lib/gcc/include/c++/4.8.2 -I/usr/lib/gcc/include/c++/4.8.2/x86_64-redhat-linux -I/usr/lib/gcc/include/c++/4.8.2/backward -I/usr/lib/gcc/x86_64-redhat-linux/4.8.2/include -I/usr/local/include -I/usr/include pagespectra.h -o moc_pagespectra.cpp
|
|
2383
|
/usr/lib64/qt5/bin/moc $(DEFINES) $(INCPATH) -I/usr/lib/gcc/include/c++/4.8.2 -I/usr/lib/gcc/include/c++/4.8.2/x86_64-redhat-linux -I/usr/lib/gcc/include/c++/4.8.2/backward -I/usr/lib/gcc/x86_64-redhat-linux/4.8.2/include -I/usr/local/include -I/usr/include pagespectra.h -o moc/moc_pagespectra.cpp
|
|
2384
|
|
|
2384
|
|
|
2385
|
moc_asmpage.cpp: /usr/include/qt5/QtWidgets/QMainWindow \
|
|
2385
|
moc/moc_asmpage.cpp: /usr/include/qt5/QtWidgets/QMainWindow \
|
|
2386
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
|
2386
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
|
2387
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
2387
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
2388
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
2388
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
@@
-2861,7
+2861,7
moc_asmpage.cpp: /usr/include/qt5/QtWidg
|
|
2861
|
/usr/include/qt5/QtPrintSupport/qprintpreviewwidget.h \
|
|
2861
|
/usr/include/qt5/QtPrintSupport/qprintpreviewwidget.h \
|
|
2862
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
2862
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
2863
|
asmpage.h
|
|
2863
|
asmpage.h
|
|
2864
|
/usr/lib64/qt5/bin/moc $(DEFINES) $(INCPATH) -I/usr/lib/gcc/include/c++/4.8.2 -I/usr/lib/gcc/include/c++/4.8.2/x86_64-redhat-linux -I/usr/lib/gcc/include/c++/4.8.2/backward -I/usr/lib/gcc/x86_64-redhat-linux/4.8.2/include -I/usr/local/include -I/usr/include asmpage.h -o moc_asmpage.cpp
|
|
2864
|
/usr/lib64/qt5/bin/moc $(DEFINES) $(INCPATH) -I/usr/lib/gcc/include/c++/4.8.2 -I/usr/lib/gcc/include/c++/4.8.2/x86_64-redhat-linux -I/usr/lib/gcc/include/c++/4.8.2/backward -I/usr/lib/gcc/x86_64-redhat-linux/4.8.2/include -I/usr/local/include -I/usr/include asmpage.h -o moc/moc_asmpage.cpp
|
|
2865
|
|
|
2865
|
|
|
2866
|
compiler_moc_source_make_all:
|
|
2866
|
compiler_moc_source_make_all:
|
|
2867
|
compiler_moc_source_clean:
|
|
2867
|
compiler_moc_source_clean:
|
|
@@
-2877,7
+2877,7
compiler_clean: compiler_moc_header_clea
|
|
2877
|
|
|
2877
|
|
|
2878
|
####### Compile
|
|
2878
|
####### Compile
|
|
2879
|
|
|
2879
|
|
|
2880
|
wfdisplay.o: wfdisplay.cpp wfdisplay.h \
|
|
2880
|
obj/wfdisplay.o: wfdisplay.cpp wfdisplay.h \
|
|
2881
|
/usr/include/qt5/QtWidgets/QWidget \
|
|
2881
|
/usr/include/qt5/QtWidgets/QWidget \
|
|
2882
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
2882
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
2883
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
2883
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
@@
-3363,9
+3363,9
wfdisplay.o: wfdisplay.cpp wfdisplay.h \
|
|
3363
|
/usr/include/qt5/QtPrintSupport/qprintpreviewwidget.h \
|
|
3363
|
/usr/include/qt5/QtPrintSupport/qprintpreviewwidget.h \
|
|
3364
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
3364
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
3365
|
wfdisplay_params.h
|
|
3365
|
wfdisplay_params.h
|
|
3366
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o wfdisplay.o wfdisplay.cpp
|
|
3366
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o obj/wfdisplay.o wfdisplay.cpp
|
|
3367
|
|
|
3367
|
|
|
3368
|
wfplot.o: wfplot.cpp wfplot.h \
|
|
3368
|
obj/wfplot.o: wfplot.cpp wfplot.h \
|
|
3369
|
/usr/include/qt5/QtWidgets/QWidget \
|
|
3369
|
/usr/include/qt5/QtWidgets/QWidget \
|
|
3370
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
3370
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
3371
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
3371
|
/usr/include/qt5/QtGui/qwindowdefs.h \
|
|
@@
-3839,9
+3839,9
wfplot.o: wfplot.cpp wfplot.h \
|
|
3839
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
3839
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
3840
|
/usr/include/qt5/QtGui/QFontInfo \
|
|
3840
|
/usr/include/qt5/QtGui/QFontInfo \
|
|
3841
|
wfdisplay_params.h
|
|
3841
|
wfdisplay_params.h
|
|
3842
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o wfplot.o wfplot.cpp
|
|
3842
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o obj/wfplot.o wfplot.cpp
|
|
3843
|
|
|
3843
|
|
|
3844
|
wfpage.o: wfpage.cpp wfpage.h \
|
|
3844
|
obj/wfpage.o: wfpage.cpp wfpage.h \
|
|
3845
|
/usr/include/qt5/QtWidgets/QMainWindow \
|
|
3845
|
/usr/include/qt5/QtWidgets/QMainWindow \
|
|
3846
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
|
3846
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
|
3847
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
3847
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
@@
-4325,9
+4325,9
wfpage.o: wfpage.cpp wfpage.h \
|
|
4325
|
/usr/include/qt5/QtPrintSupport/qprintpreviewwidget.h \
|
|
4325
|
/usr/include/qt5/QtPrintSupport/qprintpreviewwidget.h \
|
|
4326
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
4326
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
4327
|
wfdisplay_params.h
|
|
4327
|
wfdisplay_params.h
|
|
4328
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o wfpage.o wfpage.cpp
|
|
4328
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o obj/wfpage.o wfpage.cpp
|
|
4329
|
|
|
4329
|
|
|
4330
|
pagespectra.o: pagespectra.cpp pagespectra.h \
|
|
4330
|
obj/pagespectra.o: pagespectra.cpp pagespectra.h \
|
|
4331
|
/usr/include/qt5/QtWidgets/QMainWindow \
|
|
4331
|
/usr/include/qt5/QtWidgets/QMainWindow \
|
|
4332
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
|
4332
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
|
4333
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
4333
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
@@
-4811,9
+4811,9
pagespectra.o: pagespectra.cpp pagespect
|
|
4811
|
/usr/include/qt5/QtPrintSupport/qprintpreviewwidget.h \
|
|
4811
|
/usr/include/qt5/QtPrintSupport/qprintpreviewwidget.h \
|
|
4812
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
4812
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h \
|
|
4813
|
wfdisplay_params.h
|
|
4813
|
wfdisplay_params.h
|
|
4814
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o pagespectra.o pagespectra.cpp
|
|
4814
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o obj/pagespectra.o pagespectra.cpp
|
|
4815
|
|
|
4815
|
|
|
4816
|
asmpage.o: asmpage.cpp asmpage.h \
|
|
4816
|
obj/asmpage.o: asmpage.cpp asmpage.h \
|
|
4817
|
/usr/include/qt5/QtWidgets/QMainWindow \
|
|
4817
|
/usr/include/qt5/QtWidgets/QMainWindow \
|
|
4818
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
|
4818
|
/usr/include/qt5/QtWidgets/qmainwindow.h \
|
|
4819
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
4819
|
/usr/include/qt5/QtWidgets/qwidget.h \
|
|
@@
-5292,22
+5292,22
asmpage.o: asmpage.cpp asmpage.h \
|
|
5292
|
/usr/include/qt5/QtCore/QPair \
|
|
5292
|
/usr/include/qt5/QtCore/QPair \
|
|
5293
|
/usr/include/qt5/QtPrintSupport/qprintpreviewwidget.h \
|
|
5293
|
/usr/include/qt5/QtPrintSupport/qprintpreviewwidget.h \
|
|
5294
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h
|
|
5294
|
/usr/include/qt5/QtPrintSupport/qtprintsupportversion.h
|
|
5295
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o asmpage.o asmpage.cpp
|
|
5295
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o obj/asmpage.o asmpage.cpp
|
|
5296
|
|
|
5296
|
|
|
5297
|
moc_wfdisplay.o: moc_wfdisplay.cpp
|
|
5297
|
obj/moc_wfdisplay.o: moc/moc_wfdisplay.cpp
|
|
5298
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_wfdisplay.o moc_wfdisplay.cpp
|
|
5298
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o obj/moc_wfdisplay.o moc/moc_wfdisplay.cpp
|
|
5299
|
|
|
5299
|
|
|
5300
|
moc_wfplot.o: moc_wfplot.cpp
|
|
5300
|
obj/moc_wfplot.o: moc/moc_wfplot.cpp
|
|
5301
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_wfplot.o moc_wfplot.cpp
|
|
5301
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o obj/moc_wfplot.o moc/moc_wfplot.cpp
|
|
5302
|
|
|
5302
|
|
|
5303
|
moc_wfpage.o: moc_wfpage.cpp
|
|
5303
|
obj/moc_wfpage.o: moc/moc_wfpage.cpp
|
|
5304
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_wfpage.o moc_wfpage.cpp
|
|
5304
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o obj/moc_wfpage.o moc/moc_wfpage.cpp
|
|
5305
|
|
|
5305
|
|
|
5306
|
moc_pagespectra.o: moc_pagespectra.cpp
|
|
5306
|
obj/moc_pagespectra.o: moc/moc_pagespectra.cpp
|
|
5307
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_pagespectra.o moc_pagespectra.cpp
|
|
5307
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o obj/moc_pagespectra.o moc/moc_pagespectra.cpp
|
|
5308
|
|
|
5308
|
|
|
5309
|
moc_asmpage.o: moc_asmpage.cpp
|
|
5309
|
obj/moc_asmpage.o: moc/moc_asmpage.cpp
|
|
5310
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_asmpage.o moc_asmpage.cpp
|
|
5310
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o obj/moc_asmpage.o moc/moc_asmpage.cpp
|
|
5311
|
|
|
5311
|
|
|
5312
|
####### Install
|
|
5312
|
####### Install
|
|
5313
|
|
|
5313
|
|