This commit is contained in:
David Turner 2000-06-23 08:36:07 +00:00
parent c31286153a
commit 873a95432d
2 changed files with 2 additions and 3 deletions

View File

@ -51,7 +51,7 @@ make_module_list: clean_module_list
#
ifneq ($(findstring $(PLATFORM),dos win32 win16 os2),)
OPEN_MODULE := @echo #
CLOSE_MODULE := >> $(FT_MODULE_LIST)
CLOSE_MODULE := >> $(subst /,\,$(FT_MODULE_LIST))
else
OPEN_MODULE := @echo "
CLOSE_MODULE := " >> $(FT_MODULE_LIST)

View File

@ -119,8 +119,7 @@ ifdef BUILD_FREETYPE
# librarian library_file {list of object files}
#
$(FT_LIBRARY): $(OBJECTS_LIST)
lcclnk -o $(subst $(SEP),$(HOSTSEP),$@) \
$(subst $(SEP),$(HOSTSEP),$(OBJECTS_LIST))
lcclib /out:$(subst /,\\,$@) $(subst /,\\,$(OBJECTS_LIST))
endif