|
@@ -2285,11 +2285,10 @@ examples:
|
|
shared:
|
|
shared:
|
|
sourceinstall:
|
|
sourceinstall:
|
|
exampleinstall:
|
|
exampleinstall:
|
|
-zipsourceinstall:
|
|
|
|
zipexampleinstall:
|
|
zipexampleinstall:
|
|
info: fpc_info
|
|
info: fpc_info
|
|
makefiles: fpc_makefiles
|
|
makefiles: fpc_makefiles
|
|
-.PHONY: units examples shared sourceinstall exampleinstall zipsourceinstall zipexampleinstall info makefiles
|
|
|
|
|
|
+.PHONY: units examples shared sourceinstall exampleinstall zipexampleinstall info makefiles
|
|
ifneq ($(wildcard fpcmake.loc),)
|
|
ifneq ($(wildcard fpcmake.loc),)
|
|
include fpcmake.loc
|
|
include fpcmake.loc
|
|
endif
|
|
endif
|
|
@@ -2357,6 +2356,12 @@ zipinstall: fpmake
|
|
$(LOCALFPMAKE) zipinstall $(FPMAKE_OPT) --zipprefix=$(DIST_DESTDIR)/$(ZIPPREFIX)
|
|
$(LOCALFPMAKE) zipinstall $(FPMAKE_OPT) --zipprefix=$(DIST_DESTDIR)/$(ZIPPREFIX)
|
|
zipdistinstall: fpmake
|
|
zipdistinstall: fpmake
|
|
$(LOCALFPMAKE) zipinstall $(FPMAKE_OPT) --zipprefix=$(DIST_DESTDIR)/$(ZIPPREFIX) -ie -fsp 0
|
|
$(LOCALFPMAKE) zipinstall $(FPMAKE_OPT) --zipprefix=$(DIST_DESTDIR)/$(ZIPPREFIX) -ie -fsp 0
|
|
|
|
+zipsourceinstall: fpmake
|
|
|
|
+ifdef UNIXHier
|
|
|
|
+ $(LOCALFPMAKE) archive $(FPMAKE_OPT) --zipprefix=$(DIST_DESTDIR)/$(ZIPPREFIX) --prefix=share/src/fpc-\$$\(PACKAGEVERSION\)/$(INSTALL_FPCSUBDIR)/\$$\(PACKAGEDIRECTORY\)
|
|
|
|
+else
|
|
|
|
+ $(LOCALFPMAKE) archive $(FPMAKE_OPT) --zipprefix=$(DIST_DESTDIR)/$(ZIPPREFIX) --prefix=source\\$(INSTALL_FPCSUBDIR)\\\$$\(PACKAGEDIRECTORY\)
|
|
|
|
+endif
|
|
PPULIST:=$(wildcard */units/*/*.ppu) $(wildcard units/*/*.ppu)
|
|
PPULIST:=$(wildcard */units/*/*.ppu) $(wildcard units/*/*.ppu)
|
|
PPULOGLIST:=$(subst .ppu,.log-ppu,$(PPULIST))
|
|
PPULOGLIST:=$(subst .ppu,.log-ppu,$(PPULIST))
|
|
RMPPULOGLIST:=$(subst .ppu,.rm-log-ppu,$(PPULIST))
|
|
RMPPULOGLIST:=$(subst .ppu,.rm-log-ppu,$(PPULIST))
|