X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b953bdc2934895fa31d859be25be1f850701c2c3..f7c832a7867b1cc588fc1ec658c2f20d0b4c81ec:/src/motif/makefile.unx diff --git a/src/motif/makefile.unx b/src/motif/makefile.unx index f90dbdbec5..15b53d06b8 100644 --- a/src/motif/makefile.unx +++ b/src/motif/makefile.unx @@ -39,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 \ @@ -60,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 \ @@ -82,7 +82,6 @@ LIB_CPP_SRC=\ choice.cpp \ clipbrd.cpp \ colour.cpp \ - colordlg.cpp \ control.cpp \ combobox.cpp \ cursor.cpp \ @@ -91,13 +90,11 @@ LIB_CPP_SRC=\ dc.cpp \ dcclient.cpp \ dcmemory.cpp \ - dcps.cpp \ dcscreen.cpp \ dialog.cpp \ dnd.cpp \ filedlg.cpp \ font.cpp \ - fontdlg.cpp \ frame.cpp \ gauge.cpp \ gdiobj.cpp \ @@ -108,12 +105,10 @@ LIB_CPP_SRC=\ mdi.cpp \ menu.cpp \ menuitem.cpp \ - metafile.cpp \ minifram.cpp \ msgdlg.cpp \ palette.cpp \ pen.cpp \ - print.cpp \ radiobox.cpp \ radiobut.cpp \ region.cpp \ @@ -137,8 +132,10 @@ 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 \ @@ -177,7 +174,7 @@ LIB_C_SRC=\ EXTRA_C_SRC=\ xmcombo/xmcombo.c -EXTRA_CPP_SRC=\ +EXTRA_CPP_SRC= # mdi/lib/XsComponent.C\ # mdi/lib/XsMDICanvas.C\ @@ -204,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.