diff --git a/aspell-0.60.6.1/linux/Makefile.linux b/aspell-0.60.6.1/linux/Makefile.linux --- a/aspell-0.60.6.1/linux/Makefile.linux +++ b/aspell-0.60.6.1/linux/Makefile.linux @@ -1,153 +1,153 @@ #!/usr/bin/make # # This makefile generated by LgiIde # http://www.memecode.com/lgi.php # .SILENT : CC = gcc CPP = g++ Target = aspell-dist-060 ifndef Build Build = Debug endif MakeDir := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) BuildDir = $(Build) CFlags = -MMD -MP -g -fPIC -fno-inline -CppFlags = $CFlags -fpermissive -std=c++14 +CppFlags = $(CFlags) -fpermissive -std=c++14 ifeq ($(Build),Debug) CFlags += -g CppFlags += -g Tag = d Defs = -D_DEBUG -DLINUX -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DPOSIX -DASPELL060_EXPORTS -DASPELLDIST060_EXPORTS Libs = Inc = \ -I../modules/speller/default \ -I./ \ -I../interfaces/cc \ -I../gen \ -I../common \ -I./ else CFlags += -s -Os CppFlags += -s -Os Defs = -DLINUX -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DPOSIX -DASPELL060_EXPORTS -DASPELLDIST060_EXPORTS Libs = Inc = \ -I../modules/speller/default \ -I./ \ -I../interfaces/cc \ -I../gen \ -I../common \ -I./ endif # Dependencies Source = ../win32/api-glue.cpp \ ../prog/prezip.c \ ../modules/tokenizer/basic.cpp \ ../modules/speller/default/writable.cpp \ ../modules/speller/default/typo_editdist.cpp \ ../modules/speller/default/suggest.cpp \ ../modules/speller/default/speller_impl.cpp \ ../modules/speller/default/readonly_ws.cpp \ ../modules/speller/default/primes.cpp \ ../modules/speller/default/phonetic.cpp \ ../modules/speller/default/phonet.cpp \ ../modules/speller/default/multi_ws.cpp \ ../modules/speller/default/leditdist.cpp \ ../modules/speller/default/language.cpp \ ../modules/speller/default/editdist.cpp \ ../modules/speller/default/data.cpp \ ../modules/speller/default/affix.cpp \ ../modules/filter/url.cpp \ ../modules/filter/texinfo.cpp \ ../modules/filter/tex.cpp \ ../modules/filter/sgml.cpp \ ../modules/filter/nroff.cpp \ ../modules/filter/email.cpp \ ../modules/filter/context.cpp \ ../lib/word_list-c.cpp \ ../lib/string_enumeration-c.cpp \ ../lib/speller-c.cpp \ ../lib/new_fmode.cpp \ ../lib/new_filter.cpp \ ../lib/new_config.cpp \ ../lib/new_checker.cpp \ ../lib/info-c.cpp \ ../lib/find_speller.cpp \ ../lib/config-c.cpp \ ../lib/can_have_error-c.cpp \ ../common/tokenizer.cpp \ ../common/strtonum.cpp \ ../common/string_map.cpp \ ../common/string_list.cpp \ ../common/string.cpp \ ../common/speller.cpp \ ../common/posib_err.cpp \ ../common/objstack.cpp \ ../common/itemize.cpp \ ../common/iostream.cpp \ ../common/info.cpp \ ../common/gettext_init.cpp \ ../common/getdata.cpp \ ../common/fstream.cpp \ ../common/filter.cpp \ ../common/file_util.cpp \ ../common/file_data_util.cpp \ ../common/errors.cpp \ ../common/error.cpp \ ../common/document_checker.cpp \ ../common/convert.cpp \ ../common/config.cpp \ ../common/can_have_error.cpp \ ../common/cache.cpp SourceC := $(filter %.c,$(Source)) ObjectsC := $(SourceC:.c=.o) SourceCpp := $(filter %.cpp,$(Source)) ObjectsCpp := $(SourceCpp:.cpp=.o) Objects := $(notdir $(ObjectsC) $(ObjectsCpp)) Objects := $(addprefix $(BuildDir)/,$(Objects)) Deps := $(patsubst %.o,%.d,$(Objects)) $(BuildDir)/%.o: %.c mkdir -p $(@D) echo $(notdir $<) [$(Build)] $(CC) $(Inc) $(CFlags) $(Defs) -c $< -o $@ $(BuildDir)/%.o: %.cpp mkdir -p $(@D) echo $(notdir $<) [$(Build)] $(CPP) $(Inc) $(CppFlags) $(Defs) -c $< -o $@ # Target TargetFile = lib$(Target)$(Tag).so $(TargetFile) : $(Objects) mkdir -p $(BuildDir) @echo Linking $(TargetFile) [$(Build)]... $(CPP)$s -shared \ \ -o $(BuildDir)/$(TargetFile) \ $(Objects) \ $(Libs) @echo Done. -include $(Objects:.o=.d) # Clean out targets clean : rm -rf $(BuildDir) @echo Cleaned $(BuildDir) VPATH=$(BuildDir) \ ../win32 \ ../prog \ ../modules/tokenizer \ ../modules/speller/default \ ../modules/filter \ ../lib \ ../common diff --git a/bzip2-1.0.6/linux/Makefile.linux b/bzip2-1.0.6/linux/Makefile.linux --- a/bzip2-1.0.6/linux/Makefile.linux +++ b/bzip2-1.0.6/linux/Makefile.linux @@ -1,81 +1,81 @@ #!/usr/bin/make # # This makefile generated by LgiIde # http://www.memecode.com/lgi.php # .SILENT : CC = gcc CPP = g++ Target = bzip2 ifndef Build Build = Debug endif MakeDir := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) BuildDir = $(Build) CFlags = -MMD -MP -g -fPIC -fno-inline -CppFlags = $CFlags -fpermissive -std=c++14 +CppFlags = $(CFlags) -fpermissive -std=c++14 ifeq ($(Build),Debug) CFlags += -g CppFlags += -g Tag = d Defs = -D_DEBUG -DLINUX -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DPOSIX Libs = Inc = \ -I../ else CFlags += -s -Os CppFlags += -s -Os Defs = -DLINUX -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DPOSIX Libs = Inc = \ -I../ endif # Dependencies Source = ../randtable.c \ ../huffman.c \ ../decompress.c \ ../crctable.c \ ../compress.c \ ../bzlib.c \ ../blocksort.c SourceC := $(filter %.c,$(Source)) ObjectsC := $(SourceC:.c=.o) SourceCpp := $(filter %.cpp,$(Source)) ObjectsCpp := $(SourceCpp:.cpp=.o) Objects := $(notdir $(ObjectsC) $(ObjectsCpp)) Objects := $(addprefix $(BuildDir)/,$(Objects)) Deps := $(patsubst %.o,%.d,$(Objects)) $(BuildDir)/%.o: %.c mkdir -p $(@D) echo $(notdir $<) [$(Build)] $(CC) $(Inc) $(CFlags) $(Defs) -c $< -o $@ $(BuildDir)/%.o: %.cpp mkdir -p $(@D) echo $(notdir $<) [$(Build)] $(CPP) $(Inc) $(CppFlags) $(Defs) -c $< -o $@ # Target TargetFile = lib$(Target)$(Tag).a $(TargetFile) : $(Objects) mkdir -p $(BuildDir) @echo Linking $(TargetFile) [$(Build)]... ar rcs $(BuildDir)/$(TargetFile) $(Objects) @echo Done. -include $(Objects:.o=.d) # Clean out targets clean : rm -rf $(BuildDir) @echo Cleaned $(BuildDir) VPATH=$(BuildDir) \ ../