X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/94b49b9303a9fd119e24d1b07263f5bb0643afa5..3e4efd7cb97cb2b3d33f34d3516b6f2efdaa3bfa:/src/motif/makefile.unx diff --git a/src/motif/makefile.unx b/src/motif/makefile.unx index 682fd52b0d..c172156bbc 100644 --- a/src/motif/makefile.unx +++ b/src/motif/makefile.unx @@ -30,6 +30,7 @@ LIB_CPP_SRC=\ ../common/helpbase.cpp \ ../common/intl.cpp \ ../common/ipcbase.cpp \ + ../common/image.cpp \ ../common/layout.cpp \ ../common/list.cpp \ ../common/log.cpp \ @@ -38,7 +39,6 @@ LIB_CPP_SRC=\ ../common/module.cpp \ ../common/object.cpp \ ../common/odbc.cpp \ - ../common/postscrp.cpp \ ../common/prntbase.cpp \ ../common/resource.cpp \ ../common/serbase.cpp \ @@ -59,6 +59,7 @@ LIB_CPP_SRC=\ ../common/objstrm.cpp \ ../common/sckstrm.cpp \ ../common/validate.cpp \ + ../common/valgen.cpp \ ../common/valtext.cpp \ ../common/variant.cpp \ ../common/wxexpr.cpp \ @@ -81,11 +82,11 @@ LIB_CPP_SRC=\ choice.cpp \ clipbrd.cpp \ colour.cpp \ - colordlg.cpp \ control.cpp \ combobox.cpp \ cursor.cpp \ data.cpp \ + dataobj.cpp \ dc.cpp \ dcclient.cpp \ dcmemory.cpp \ @@ -94,11 +95,9 @@ LIB_CPP_SRC=\ dnd.cpp \ filedlg.cpp \ font.cpp \ - fontdlg.cpp \ frame.cpp \ gauge.cpp \ gdiobj.cpp \ - helpxxxx.cpp \ icon.cpp \ listbox.cpp \ joystick.cpp \ @@ -106,13 +105,10 @@ LIB_CPP_SRC=\ mdi.cpp \ menu.cpp \ menuitem.cpp \ - metafile.cpp \ minifram.cpp \ msgdlg.cpp \ - notebook.cpp \ palette.cpp \ pen.cpp \ - print.cpp \ radiobox.cpp \ radiobut.cpp \ region.cpp \ @@ -136,16 +132,22 @@ LIB_CPP_SRC=\ ../generic/choicdgg.cpp \ ../generic/colrdlgg.cpp \ ../generic/dirdlgg.cpp \ + ../generic/dcpsg.cpp \ ../generic/fontdlgg.cpp \ ../generic/gridg.cpp \ + ../generic/helphtml.cpp \ ../generic/helpext.cpp \ ../generic/imaglist.cpp \ ../generic/listctrl.cpp \ ../generic/laywin.cpp \ ../generic/msgdlgg.cpp \ + ../generic/notebook.cpp \ ../generic/panelg.cpp \ ../generic/printps.cpp \ ../generic/prntdlgg.cpp \ + ../generic/prop.cpp \ + ../generic/propform.cpp \ + ../generic/proplist.cpp \ ../generic/sashwin.cpp \ ../generic/scrolwin.cpp \ ../generic/splitter.cpp \ @@ -154,14 +156,6 @@ LIB_CPP_SRC=\ ../generic/textdlgg.cpp \ ../generic/treectrl.cpp -# If you're not using the generic ones, you -# may wish to define platform-specific ones -# dirdlg.cpp \ -# treectrl.cpp \ -# listctrl.cpp \ -# imaglist.cpp \ -# statusbr.cpp \ - ZLIB_SRC=\ ../zlib/adler32.c ../zlib/deflate.c ../zlib/infblock.c\ ../zlib/inflate.c ../zlib/zutil.c ../zlib/compress.c \ @@ -178,7 +172,7 @@ LIB_C_SRC=\ # already have a zlib library installed on our system # (or we wish to statically link them for some reason) EXTRA_C_SRC=\ - xmcombo/xmcombo.c # $(ZLIB_SRC) + xmcombo/xmcombo.c EXTRA_CPP_SRC=\ @@ -190,7 +184,7 @@ EXTRA_CPP_SRC=\ # mdi/lib/XsOutline.C\ # mdi/lib/XsResizeOutline.C -all: $(WXLIB) +all: $(WXLIB) png zlib # Define library objects OBJECTS=\ @@ -207,11 +201,20 @@ $(WXLIB) : $(OBJECTS) # problems with lex_yy.c. See also note about LEX_SCANNER # above. ../common/lex_yy.c: ../common/lexer.l - $(LEX) -o../common/lex.yy.c ../common/lexer.l - sed -e "s/BUFSIZ/5000/g" < ../common/lex.yy.c | \ + $(LEX) ../common/lexer.l + sed -e "s/BUFSIZ/5000/g" < lex.yy.c | \ sed -e "s/yyoutput(c)/void yyoutput(c)/g" | \ sed -e "s/YYLMAX 200/YYLMAX 5000/g" > ../common/lex_yy.c - /bin/rm -f ../common/lex.yy.c + /bin/rm -f lex.yy.c + +# The above should work with both lex and flex, but just in case not, +# here are alternative syntaxes. +# +# Flex-style syntax: +# $(LEX) -olex.yy.c ../common/lexer.l + +# Lex-style syntax: +# $(LEX) ../common/lexer.l # Replace yacc with bison if you run into compilation # problems with y_tab.c. @@ -222,6 +225,18 @@ $(WXLIB) : $(OBJECTS) combobox/combobox.o: combobox/combobox.c $(CCC) -c $(CFLAGS) -o $@ combobox/combobox.c -clean: +zlib: + cd ../zlib; make -f makefile.unx motif + +png: + cd ../png; make -f makefile.unx motif + +clean: cleanzlib cleanpng rm -f $(OBJECTS) $(WXLIB) +cleanzlib: + cd ../zlib; make -f makefile.unx cleanmotif + +cleanpng: + cd ../png; make -f makefile.unx cleanmotif +