diff -uNr qt-1.33/Makefile qt-1.33-egcs/Makefile --- qt-1.33/Makefile Mon Mar 16 17:52:24 1998 +++ qt-1.33-egcs/Makefile Sun Jul 5 02:56:25 1998 @@ -64,6 +64,9 @@ @echo " " linux-gcc-shared-debug @echo " " linux-gcc-shared @echo " " linux-gcc-static + @echo " " linux-egcs-shared-debug + @echo " " linux-egcs-shared + @echo " " linux-egcs-static @echo " " netbsd-gcc-shared @echo " " netbsd-gcc-static @echo " " osf1-cxx-shared @@ -332,6 +335,42 @@ YACCCFLAGS="-Wno-unused -Wno-parentheses" \ LFLAGS="-lqt -L/usr/X11R6/lib -lX11" \ SHELL="/bin/sh" PLATFORM=linux-gcc-static ./propagate + @touch variables + @echo + @echo Qt is now configured for building. Just run "make" to build it. + @echo + +linux-egcs-shared-debug: Makefile + CC="egcs" \ + CFLAGS="-g -Wall -W -I/usr/X11R6/include" \ + LIBCFLAGS="-fPIC" \ + YACCCFLAGS="-Wno-unused -Wno-parentheses" \ + LFLAGS="-lqt" \ + SHELL="/bin/sh" PLATFORM=linux-egcs-shared-debug ./propagate + @touch variables + @echo + @echo Qt is now configured for building. Just run "make" to build it. + @echo + +linux-egcs-shared: Makefile + CC="egcs" \ + CFLAGS="-O2 -fno-strength-reduce -Wall -W -I/usr/X11R6/include" \ + LIBCFLAGS="-fPIC" \ + YACCCFLAGS="-Wno-unused -Wno-parentheses" \ + LFLAGS="-lqt" \ + SHELL="/bin/sh" PLATFORM=linux-egcs-shared ./propagate + @touch variables + @echo + @echo Qt is now configured for building. Just run "make" to build it. + @echo + +linux-egcs-static: Makefile + CC="egcs" \ + CFLAGS="-O2 -fno-strength-reduce -Wall -W -I/usr/X11R6/include" \ + LIBCFLAGS="" \ + YACCCFLAGS="-Wno-unused -Wno-parentheses" \ + LFLAGS="-lqt -L/usr/X11R6/lib -lX11" \ + SHELL="/bin/sh" PLATFORM=linux-egcs-static ./propagate @touch variables @echo @echo Qt is now configured for building. Just run "make" to build it. diff -uNr qt-1.33/src/Makefile qt-1.33-egcs/src/Makefile --- qt-1.33/src/Makefile Mon Mar 16 17:52:25 1998 +++ qt-1.33-egcs/src/Makefile Sun Jul 5 02:52:05 1998 @@ -233,6 +233,33 @@ ranlib libqt.a mv libqt.a ../lib +link-linux-egcs-shared-debug: tools kernel widgets dialogs + -rm -f ../lib/libqt.so.$(VERSION) + $(CC) -shared -Wl,-soname,libqt.so.1 \ + -o libqt.so.$(VERSION) \ + $(OBJECTS) $(METAOBJ) -L/usr/X11R6/lib -lX11 + mv libqt.so.$(VERSION) ../lib + -rm -f ../lib/libqt.so + -ln -s libqt.so.$(VERSION) ../lib/libqt.so + -rm -f ../lib/libqt.so.1 + -ln -s libqt.so.$(VERSION) ../lib/libqt.so.1 + +link-linux-egcs-shared: tools kernel widgets dialogs + -rm -f ../lib/libqt.so.$(VERSION) + $(CC) -shared -Wl,-soname,libqt.so.1 \ + -o libqt.so.$(VERSION) \ + $(OBJECTS) $(METAOBJ) -L/usr/X11R6/lib -lX11 + mv libqt.so.$(VERSION) ../lib + -rm -f ../lib/libqt.so + -ln -s libqt.so.$(VERSION) ../lib/libqt.so + -rm -f ../lib/libqt.so.1 + -ln -s libqt.so.$(VERSION) ../lib/libqt.so.1 + +link-linux-egcs-static: tools kernel widgets dialogs + ar q libqt.a $(OBJECTS) $(METAOBJ) + ranlib libqt.a + mv libqt.a ../lib + link-netbsd-gcc-shared: tools kernel widgets dialogs -rm -f ../lib/libqt.so.$(VERSION) ld -Bshareable \