|
@@ -1,7 +1,8 @@
|
|
|
#
|
|
|
-# Don't edit, this file is generated by FPCMake Version 1.1 [2002/01/06]
|
|
|
+# Don't edit, this file is generated by FPCMake Version 1.1 [2002/01/27]
|
|
|
#
|
|
|
default: all
|
|
|
+MAKEFILETARGETS=linux go32v2 win32 os2 freebsd beos netbsd amiga atari sunos qnx
|
|
|
override PATH:=$(subst \,/,$(PATH))
|
|
|
ifeq ($(findstring ;,$(PATH)),)
|
|
|
inUnix=1
|
|
@@ -13,10 +14,7 @@ PWD:=$(strip $(wildcard $(addsuffix /pwd.exe,$(SEARCHPATH))))
|
|
|
ifeq ($(PWD),)
|
|
|
PWD:=$(strip $(wildcard $(addsuffix /pwd,$(SEARCHPATH))))
|
|
|
ifeq ($(PWD),)
|
|
|
-nopwd:
|
|
|
- @echo You need the GNU utils package to use this Makefile!
|
|
|
- @echo Get ftp://ftp.freepascal.org/pub/fpc/dist/go32v2/utilgo32.zip
|
|
|
- @exit
|
|
|
+$(error You need the GNU utils package to use this Makefile)
|
|
|
else
|
|
|
PWD:=$(firstword $(PWD))
|
|
|
SRCEXEEXT=
|
|
@@ -94,23 +92,44 @@ ifndef FPC_VERSION
|
|
|
FPC_VERSION:=$(shell $(FPC) -iV)
|
|
|
endif
|
|
|
export FPC FPC_VERSION
|
|
|
+ifeq ($(findstring 1.0.,$(FPC_VERSION)),)
|
|
|
+COMPILERINFO:=$(shell $(FPC) -iSP -iTP -iSO -iTO)
|
|
|
+ifndef CPU_SOURCE
|
|
|
+CPU_SOURCE:=$(word 1,$(COMPILERINFO))
|
|
|
+endif
|
|
|
ifndef CPU_TARGET
|
|
|
-CPU_TARGET:=$(shell $(FPC) -iTP)
|
|
|
+CPU_TARGET:=$(word 2,$(COMPILERINFO))
|
|
|
+endif
|
|
|
+ifndef OS_SOURCE
|
|
|
+OS_SOURCE:=$(word 3,$(COMPILERINFO))
|
|
|
endif
|
|
|
+ifndef OS_TARGET
|
|
|
+OS_TARGET:=$(word 4,$(COMPILERINFO))
|
|
|
+endif
|
|
|
+else
|
|
|
ifndef CPU_SOURCE
|
|
|
CPU_SOURCE:=$(shell $(FPC) -iSP)
|
|
|
endif
|
|
|
-ifndef OS_TARGET
|
|
|
-OS_TARGET:=$(shell $(FPC) -iTO)
|
|
|
+ifndef CPU_TARGET
|
|
|
+CPU_TARGET:=$(shell $(FPC) -iTP)
|
|
|
endif
|
|
|
ifndef OS_SOURCE
|
|
|
OS_SOURCE:=$(shell $(FPC) -iSO)
|
|
|
endif
|
|
|
+ifndef OS_TARGET
|
|
|
+OS_TARGET:=$(shell $(FPC) -iTO)
|
|
|
+endif
|
|
|
+endif
|
|
|
FULL_TARGET=$(CPU_TARGET)-$(OS_TARGET)
|
|
|
FULL_SOURCE=$(CPU_SOURCE)-$(OS_SOURCE)
|
|
|
ifneq ($(FULL_TARGET),$(FULL_SOURCE))
|
|
|
CROSSCOMPILE=1
|
|
|
endif
|
|
|
+ifeq ($(findstring makefile,$(MAKECMDGOALS)),)
|
|
|
+ifeq ($(findstring $(OS_TARGET),$(MAKEFILETARGETS)),)
|
|
|
+$(error The Makefile doesn't support target $(OS_TARGET), please run fpcmake first)
|
|
|
+endif
|
|
|
+endif
|
|
|
export OS_TARGET OS_SOURCE CPU_TARGET CPU_SOURCE FULL_TARGET FULL_SOURCE CROSSCOMPILE
|
|
|
ifdef FPCDIR
|
|
|
override FPCDIR:=$(subst \,/,$(FPCDIR))
|
|
@@ -881,6 +900,8 @@ fpc_baseinfo:
|
|
|
@$(ECHO)
|
|
|
@$(ECHO) == Directory info ==
|
|
|
@$(ECHO)
|
|
|
+ @$(ECHO) Required pkgs... $(REQUIRE_PACKAGES)
|
|
|
+ @$(ECHO)
|
|
|
@$(ECHO) Basedir......... $(BASEDIR)
|
|
|
@$(ECHO) FPCDir.......... $(FPCDIR)
|
|
|
@$(ECHO) CrossBinDir..... $(CROSSBINDIR)
|
|
@@ -948,13 +969,13 @@ fpc_info: $(INFORULES)
|
|
|
.PHONY: fpc_makefile fpc_makefiles fpc_makefile_sub1 fpc_makefile_sub2 \
|
|
|
fpc_makefile_dirs
|
|
|
fpc_makefile:
|
|
|
- $(FPCMAKE) -w Makefile.fpc
|
|
|
+ $(FPCMAKE) -w -T$(OS_TARGET) Makefile.fpc
|
|
|
fpc_makefile_sub1:
|
|
|
ifdef TARGET_DIRS
|
|
|
- $(FPCMAKE) -w $(addsuffix /Makefile.fpc,$(TARGET_DIRS))
|
|
|
+ $(FPCMAKE) -w -T$(OS_TARGET) $(addsuffix /Makefile.fpc,$(TARGET_DIRS))
|
|
|
endif
|
|
|
ifdef TARGET_EXAMPLEDIRS
|
|
|
- $(FPCMAKE) -w $(addsuffix /Makefile.fpc,$(TARGET_EXAMPLEDIRS))
|
|
|
+ $(FPCMAKE) -w -T$(OS_TARGET) $(addsuffix /Makefile.fpc,$(TARGET_EXAMPLEDIRS))
|
|
|
endif
|
|
|
fpc_makefile_sub2: $(addsuffix _makefile_dirs,$(TARGET_DIRS) $(TARGET_EXAMPLEDIRS))
|
|
|
fpc_makefile_dirs: fpc_makefile_sub1 fpc_makefile_sub2
|
|
@@ -1085,6 +1106,8 @@ zlib_debug:
|
|
|
$(MAKE) -C zlib debug
|
|
|
zlib_smart:
|
|
|
$(MAKE) -C zlib smart
|
|
|
+zlib_release:
|
|
|
+ $(MAKE) -C zlib release
|
|
|
zlib_examples:
|
|
|
$(MAKE) -C zlib examples
|
|
|
zlib_shared:
|
|
@@ -1113,15 +1136,11 @@ zlib_cleanall:
|
|
|
$(MAKE) -C zlib cleanall
|
|
|
zlib_info:
|
|
|
$(MAKE) -C zlib info
|
|
|
-zlib_makefile:
|
|
|
- $(MAKE) -C zlib makefile
|
|
|
zlib_makefiles:
|
|
|
$(MAKE) -C zlib makefiles
|
|
|
-zlib_makefile_dirs:
|
|
|
- $(MAKE) -C zlib makefile_dirs
|
|
|
zlib:
|
|
|
$(MAKE) -C zlib all
|
|
|
-.PHONY: zlib_all zlib_debug zlib_smart zlib_examples zlib_shared zlib_install zlib_sourceinstall zlib_exampleinstall zlib_distinstall zlib_zipinstall zlib_zipsourceinstall zlib_zipexampleinstall zlib_zipdistinstall zlib_clean zlib_distclean zlib_cleanall zlib_info zlib_makefile zlib_makefiles zlib_makefile_dirs zlib
|
|
|
+.PHONY: zlib_all zlib_debug zlib_smart zlib_release zlib_examples zlib_shared zlib_install zlib_sourceinstall zlib_exampleinstall zlib_distinstall zlib_zipinstall zlib_zipsourceinstall zlib_zipexampleinstall zlib_zipdistinstall zlib_clean zlib_distclean zlib_cleanall zlib_info zlib_makefiles zlib
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_NCURSES
|
|
|
ncurses_all:
|
|
@@ -1130,6 +1149,8 @@ ncurses_debug:
|
|
|
$(MAKE) -C ncurses debug
|
|
|
ncurses_smart:
|
|
|
$(MAKE) -C ncurses smart
|
|
|
+ncurses_release:
|
|
|
+ $(MAKE) -C ncurses release
|
|
|
ncurses_examples:
|
|
|
$(MAKE) -C ncurses examples
|
|
|
ncurses_shared:
|
|
@@ -1158,15 +1179,11 @@ ncurses_cleanall:
|
|
|
$(MAKE) -C ncurses cleanall
|
|
|
ncurses_info:
|
|
|
$(MAKE) -C ncurses info
|
|
|
-ncurses_makefile:
|
|
|
- $(MAKE) -C ncurses makefile
|
|
|
ncurses_makefiles:
|
|
|
$(MAKE) -C ncurses makefiles
|
|
|
-ncurses_makefile_dirs:
|
|
|
- $(MAKE) -C ncurses makefile_dirs
|
|
|
ncurses:
|
|
|
$(MAKE) -C ncurses all
|
|
|
-.PHONY: ncurses_all ncurses_debug ncurses_smart ncurses_examples ncurses_shared ncurses_install ncurses_sourceinstall ncurses_exampleinstall ncurses_distinstall ncurses_zipinstall ncurses_zipsourceinstall ncurses_zipexampleinstall ncurses_zipdistinstall ncurses_clean ncurses_distclean ncurses_cleanall ncurses_info ncurses_makefile ncurses_makefiles ncurses_makefile_dirs ncurses
|
|
|
+.PHONY: ncurses_all ncurses_debug ncurses_smart ncurses_release ncurses_examples ncurses_shared ncurses_install ncurses_sourceinstall ncurses_exampleinstall ncurses_distinstall ncurses_zipinstall ncurses_zipsourceinstall ncurses_zipexampleinstall ncurses_zipdistinstall ncurses_clean ncurses_distclean ncurses_cleanall ncurses_info ncurses_makefiles ncurses
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_X11
|
|
|
x11_all:
|
|
@@ -1175,6 +1192,8 @@ x11_debug:
|
|
|
$(MAKE) -C x11 debug
|
|
|
x11_smart:
|
|
|
$(MAKE) -C x11 smart
|
|
|
+x11_release:
|
|
|
+ $(MAKE) -C x11 release
|
|
|
x11_examples:
|
|
|
$(MAKE) -C x11 examples
|
|
|
x11_shared:
|
|
@@ -1203,15 +1222,11 @@ x11_cleanall:
|
|
|
$(MAKE) -C x11 cleanall
|
|
|
x11_info:
|
|
|
$(MAKE) -C x11 info
|
|
|
-x11_makefile:
|
|
|
- $(MAKE) -C x11 makefile
|
|
|
x11_makefiles:
|
|
|
$(MAKE) -C x11 makefiles
|
|
|
-x11_makefile_dirs:
|
|
|
- $(MAKE) -C x11 makefile_dirs
|
|
|
x11:
|
|
|
$(MAKE) -C x11 all
|
|
|
-.PHONY: x11_all x11_debug x11_smart x11_examples x11_shared x11_install x11_sourceinstall x11_exampleinstall x11_distinstall x11_zipinstall x11_zipsourceinstall x11_zipexampleinstall x11_zipdistinstall x11_clean x11_distclean x11_cleanall x11_info x11_makefile x11_makefiles x11_makefile_dirs x11
|
|
|
+.PHONY: x11_all x11_debug x11_smart x11_release x11_examples x11_shared x11_install x11_sourceinstall x11_exampleinstall x11_distinstall x11_zipinstall x11_zipsourceinstall x11_zipexampleinstall x11_zipdistinstall x11_clean x11_distclean x11_cleanall x11_info x11_makefiles x11
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_GTK
|
|
|
gtk_all:
|
|
@@ -1220,6 +1235,8 @@ gtk_debug:
|
|
|
$(MAKE) -C gtk debug
|
|
|
gtk_smart:
|
|
|
$(MAKE) -C gtk smart
|
|
|
+gtk_release:
|
|
|
+ $(MAKE) -C gtk release
|
|
|
gtk_examples:
|
|
|
$(MAKE) -C gtk examples
|
|
|
gtk_shared:
|
|
@@ -1248,15 +1265,11 @@ gtk_cleanall:
|
|
|
$(MAKE) -C gtk cleanall
|
|
|
gtk_info:
|
|
|
$(MAKE) -C gtk info
|
|
|
-gtk_makefile:
|
|
|
- $(MAKE) -C gtk makefile
|
|
|
gtk_makefiles:
|
|
|
$(MAKE) -C gtk makefiles
|
|
|
-gtk_makefile_dirs:
|
|
|
- $(MAKE) -C gtk makefile_dirs
|
|
|
gtk:
|
|
|
$(MAKE) -C gtk all
|
|
|
-.PHONY: gtk_all gtk_debug gtk_smart gtk_examples gtk_shared gtk_install gtk_sourceinstall gtk_exampleinstall gtk_distinstall gtk_zipinstall gtk_zipsourceinstall gtk_zipexampleinstall gtk_zipdistinstall gtk_clean gtk_distclean gtk_cleanall gtk_info gtk_makefile gtk_makefiles gtk_makefile_dirs gtk
|
|
|
+.PHONY: gtk_all gtk_debug gtk_smart gtk_release gtk_examples gtk_shared gtk_install gtk_sourceinstall gtk_exampleinstall gtk_distinstall gtk_zipinstall gtk_zipsourceinstall gtk_zipexampleinstall gtk_zipdistinstall gtk_clean gtk_distclean gtk_cleanall gtk_info gtk_makefiles gtk
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_SYSLOG
|
|
|
syslog_all:
|
|
@@ -1265,6 +1278,8 @@ syslog_debug:
|
|
|
$(MAKE) -C syslog debug
|
|
|
syslog_smart:
|
|
|
$(MAKE) -C syslog smart
|
|
|
+syslog_release:
|
|
|
+ $(MAKE) -C syslog release
|
|
|
syslog_examples:
|
|
|
$(MAKE) -C syslog examples
|
|
|
syslog_shared:
|
|
@@ -1293,15 +1308,11 @@ syslog_cleanall:
|
|
|
$(MAKE) -C syslog cleanall
|
|
|
syslog_info:
|
|
|
$(MAKE) -C syslog info
|
|
|
-syslog_makefile:
|
|
|
- $(MAKE) -C syslog makefile
|
|
|
syslog_makefiles:
|
|
|
$(MAKE) -C syslog makefiles
|
|
|
-syslog_makefile_dirs:
|
|
|
- $(MAKE) -C syslog makefile_dirs
|
|
|
syslog:
|
|
|
$(MAKE) -C syslog all
|
|
|
-.PHONY: syslog_all syslog_debug syslog_smart syslog_examples syslog_shared syslog_install syslog_sourceinstall syslog_exampleinstall syslog_distinstall syslog_zipinstall syslog_zipsourceinstall syslog_zipexampleinstall syslog_zipdistinstall syslog_clean syslog_distclean syslog_cleanall syslog_info syslog_makefile syslog_makefiles syslog_makefile_dirs syslog
|
|
|
+.PHONY: syslog_all syslog_debug syslog_smart syslog_release syslog_examples syslog_shared syslog_install syslog_sourceinstall syslog_exampleinstall syslog_distinstall syslog_zipinstall syslog_zipsourceinstall syslog_zipexampleinstall syslog_zipdistinstall syslog_clean syslog_distclean syslog_cleanall syslog_info syslog_makefiles syslog
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_INET
|
|
|
inet_all:
|
|
@@ -1310,6 +1321,8 @@ inet_debug:
|
|
|
$(MAKE) -C inet debug
|
|
|
inet_smart:
|
|
|
$(MAKE) -C inet smart
|
|
|
+inet_release:
|
|
|
+ $(MAKE) -C inet release
|
|
|
inet_examples:
|
|
|
$(MAKE) -C inet examples
|
|
|
inet_shared:
|
|
@@ -1338,15 +1351,11 @@ inet_cleanall:
|
|
|
$(MAKE) -C inet cleanall
|
|
|
inet_info:
|
|
|
$(MAKE) -C inet info
|
|
|
-inet_makefile:
|
|
|
- $(MAKE) -C inet makefile
|
|
|
inet_makefiles:
|
|
|
$(MAKE) -C inet makefiles
|
|
|
-inet_makefile_dirs:
|
|
|
- $(MAKE) -C inet makefile_dirs
|
|
|
inet:
|
|
|
$(MAKE) -C inet all
|
|
|
-.PHONY: inet_all inet_debug inet_smart inet_examples inet_shared inet_install inet_sourceinstall inet_exampleinstall inet_distinstall inet_zipinstall inet_zipsourceinstall inet_zipexampleinstall inet_zipdistinstall inet_clean inet_distclean inet_cleanall inet_info inet_makefile inet_makefiles inet_makefile_dirs inet
|
|
|
+.PHONY: inet_all inet_debug inet_smart inet_release inet_examples inet_shared inet_install inet_sourceinstall inet_exampleinstall inet_distinstall inet_zipinstall inet_zipsourceinstall inet_zipexampleinstall inet_zipdistinstall inet_clean inet_distclean inet_cleanall inet_info inet_makefiles inet
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_UNCGI
|
|
|
uncgi_all:
|
|
@@ -1355,6 +1364,8 @@ uncgi_debug:
|
|
|
$(MAKE) -C uncgi debug
|
|
|
uncgi_smart:
|
|
|
$(MAKE) -C uncgi smart
|
|
|
+uncgi_release:
|
|
|
+ $(MAKE) -C uncgi release
|
|
|
uncgi_examples:
|
|
|
$(MAKE) -C uncgi examples
|
|
|
uncgi_shared:
|
|
@@ -1383,15 +1394,11 @@ uncgi_cleanall:
|
|
|
$(MAKE) -C uncgi cleanall
|
|
|
uncgi_info:
|
|
|
$(MAKE) -C uncgi info
|
|
|
-uncgi_makefile:
|
|
|
- $(MAKE) -C uncgi makefile
|
|
|
uncgi_makefiles:
|
|
|
$(MAKE) -C uncgi makefiles
|
|
|
-uncgi_makefile_dirs:
|
|
|
- $(MAKE) -C uncgi makefile_dirs
|
|
|
uncgi:
|
|
|
$(MAKE) -C uncgi all
|
|
|
-.PHONY: uncgi_all uncgi_debug uncgi_smart uncgi_examples uncgi_shared uncgi_install uncgi_sourceinstall uncgi_exampleinstall uncgi_distinstall uncgi_zipinstall uncgi_zipsourceinstall uncgi_zipexampleinstall uncgi_zipdistinstall uncgi_clean uncgi_distclean uncgi_cleanall uncgi_info uncgi_makefile uncgi_makefiles uncgi_makefile_dirs uncgi
|
|
|
+.PHONY: uncgi_all uncgi_debug uncgi_smart uncgi_release uncgi_examples uncgi_shared uncgi_install uncgi_sourceinstall uncgi_exampleinstall uncgi_distinstall uncgi_zipinstall uncgi_zipsourceinstall uncgi_zipexampleinstall uncgi_zipdistinstall uncgi_clean uncgi_distclean uncgi_cleanall uncgi_info uncgi_makefiles uncgi
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_MYSQL
|
|
|
mysql_all:
|
|
@@ -1400,6 +1407,8 @@ mysql_debug:
|
|
|
$(MAKE) -C mysql debug
|
|
|
mysql_smart:
|
|
|
$(MAKE) -C mysql smart
|
|
|
+mysql_release:
|
|
|
+ $(MAKE) -C mysql release
|
|
|
mysql_examples:
|
|
|
$(MAKE) -C mysql examples
|
|
|
mysql_shared:
|
|
@@ -1428,15 +1437,11 @@ mysql_cleanall:
|
|
|
$(MAKE) -C mysql cleanall
|
|
|
mysql_info:
|
|
|
$(MAKE) -C mysql info
|
|
|
-mysql_makefile:
|
|
|
- $(MAKE) -C mysql makefile
|
|
|
mysql_makefiles:
|
|
|
$(MAKE) -C mysql makefiles
|
|
|
-mysql_makefile_dirs:
|
|
|
- $(MAKE) -C mysql makefile_dirs
|
|
|
mysql:
|
|
|
$(MAKE) -C mysql all
|
|
|
-.PHONY: mysql_all mysql_debug mysql_smart mysql_examples mysql_shared mysql_install mysql_sourceinstall mysql_exampleinstall mysql_distinstall mysql_zipinstall mysql_zipsourceinstall mysql_zipexampleinstall mysql_zipdistinstall mysql_clean mysql_distclean mysql_cleanall mysql_info mysql_makefile mysql_makefiles mysql_makefile_dirs mysql
|
|
|
+.PHONY: mysql_all mysql_debug mysql_smart mysql_release mysql_examples mysql_shared mysql_install mysql_sourceinstall mysql_exampleinstall mysql_distinstall mysql_zipinstall mysql_zipsourceinstall mysql_zipexampleinstall mysql_zipdistinstall mysql_clean mysql_distclean mysql_cleanall mysql_info mysql_makefiles mysql
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_IBASE
|
|
|
ibase_all:
|
|
@@ -1445,6 +1450,8 @@ ibase_debug:
|
|
|
$(MAKE) -C ibase debug
|
|
|
ibase_smart:
|
|
|
$(MAKE) -C ibase smart
|
|
|
+ibase_release:
|
|
|
+ $(MAKE) -C ibase release
|
|
|
ibase_examples:
|
|
|
$(MAKE) -C ibase examples
|
|
|
ibase_shared:
|
|
@@ -1473,15 +1480,11 @@ ibase_cleanall:
|
|
|
$(MAKE) -C ibase cleanall
|
|
|
ibase_info:
|
|
|
$(MAKE) -C ibase info
|
|
|
-ibase_makefile:
|
|
|
- $(MAKE) -C ibase makefile
|
|
|
ibase_makefiles:
|
|
|
$(MAKE) -C ibase makefiles
|
|
|
-ibase_makefile_dirs:
|
|
|
- $(MAKE) -C ibase makefile_dirs
|
|
|
ibase:
|
|
|
$(MAKE) -C ibase all
|
|
|
-.PHONY: ibase_all ibase_debug ibase_smart ibase_examples ibase_shared ibase_install ibase_sourceinstall ibase_exampleinstall ibase_distinstall ibase_zipinstall ibase_zipsourceinstall ibase_zipexampleinstall ibase_zipdistinstall ibase_clean ibase_distclean ibase_cleanall ibase_info ibase_makefile ibase_makefiles ibase_makefile_dirs ibase
|
|
|
+.PHONY: ibase_all ibase_debug ibase_smart ibase_release ibase_examples ibase_shared ibase_install ibase_sourceinstall ibase_exampleinstall ibase_distinstall ibase_zipinstall ibase_zipsourceinstall ibase_zipexampleinstall ibase_zipdistinstall ibase_clean ibase_distclean ibase_cleanall ibase_info ibase_makefiles ibase
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_POSTGRES
|
|
|
postgres_all:
|
|
@@ -1490,6 +1493,8 @@ postgres_debug:
|
|
|
$(MAKE) -C postgres debug
|
|
|
postgres_smart:
|
|
|
$(MAKE) -C postgres smart
|
|
|
+postgres_release:
|
|
|
+ $(MAKE) -C postgres release
|
|
|
postgres_examples:
|
|
|
$(MAKE) -C postgres examples
|
|
|
postgres_shared:
|
|
@@ -1518,15 +1523,11 @@ postgres_cleanall:
|
|
|
$(MAKE) -C postgres cleanall
|
|
|
postgres_info:
|
|
|
$(MAKE) -C postgres info
|
|
|
-postgres_makefile:
|
|
|
- $(MAKE) -C postgres makefile
|
|
|
postgres_makefiles:
|
|
|
$(MAKE) -C postgres makefiles
|
|
|
-postgres_makefile_dirs:
|
|
|
- $(MAKE) -C postgres makefile_dirs
|
|
|
postgres:
|
|
|
$(MAKE) -C postgres all
|
|
|
-.PHONY: postgres_all postgres_debug postgres_smart postgres_examples postgres_shared postgres_install postgres_sourceinstall postgres_exampleinstall postgres_distinstall postgres_zipinstall postgres_zipsourceinstall postgres_zipexampleinstall postgres_zipdistinstall postgres_clean postgres_distclean postgres_cleanall postgres_info postgres_makefile postgres_makefiles postgres_makefile_dirs postgres
|
|
|
+.PHONY: postgres_all postgres_debug postgres_smart postgres_release postgres_examples postgres_shared postgres_install postgres_sourceinstall postgres_exampleinstall postgres_distinstall postgres_zipinstall postgres_zipsourceinstall postgres_zipexampleinstall postgres_zipdistinstall postgres_clean postgres_distclean postgres_cleanall postgres_info postgres_makefiles postgres
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_ORACLE
|
|
|
oracle_all:
|
|
@@ -1535,6 +1536,8 @@ oracle_debug:
|
|
|
$(MAKE) -C oracle debug
|
|
|
oracle_smart:
|
|
|
$(MAKE) -C oracle smart
|
|
|
+oracle_release:
|
|
|
+ $(MAKE) -C oracle release
|
|
|
oracle_examples:
|
|
|
$(MAKE) -C oracle examples
|
|
|
oracle_shared:
|
|
@@ -1563,15 +1566,11 @@ oracle_cleanall:
|
|
|
$(MAKE) -C oracle cleanall
|
|
|
oracle_info:
|
|
|
$(MAKE) -C oracle info
|
|
|
-oracle_makefile:
|
|
|
- $(MAKE) -C oracle makefile
|
|
|
oracle_makefiles:
|
|
|
$(MAKE) -C oracle makefiles
|
|
|
-oracle_makefile_dirs:
|
|
|
- $(MAKE) -C oracle makefile_dirs
|
|
|
oracle:
|
|
|
$(MAKE) -C oracle all
|
|
|
-.PHONY: oracle_all oracle_debug oracle_smart oracle_examples oracle_shared oracle_install oracle_sourceinstall oracle_exampleinstall oracle_distinstall oracle_zipinstall oracle_zipsourceinstall oracle_zipexampleinstall oracle_zipdistinstall oracle_clean oracle_distclean oracle_cleanall oracle_info oracle_makefile oracle_makefiles oracle_makefile_dirs oracle
|
|
|
+.PHONY: oracle_all oracle_debug oracle_smart oracle_release oracle_examples oracle_shared oracle_install oracle_sourceinstall oracle_exampleinstall oracle_distinstall oracle_zipinstall oracle_zipsourceinstall oracle_zipexampleinstall oracle_zipdistinstall oracle_clean oracle_distclean oracle_cleanall oracle_info oracle_makefiles oracle
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_OPENGL
|
|
|
opengl_all:
|
|
@@ -1580,6 +1579,8 @@ opengl_debug:
|
|
|
$(MAKE) -C opengl debug
|
|
|
opengl_smart:
|
|
|
$(MAKE) -C opengl smart
|
|
|
+opengl_release:
|
|
|
+ $(MAKE) -C opengl release
|
|
|
opengl_examples:
|
|
|
$(MAKE) -C opengl examples
|
|
|
opengl_shared:
|
|
@@ -1608,15 +1609,11 @@ opengl_cleanall:
|
|
|
$(MAKE) -C opengl cleanall
|
|
|
opengl_info:
|
|
|
$(MAKE) -C opengl info
|
|
|
-opengl_makefile:
|
|
|
- $(MAKE) -C opengl makefile
|
|
|
opengl_makefiles:
|
|
|
$(MAKE) -C opengl makefiles
|
|
|
-opengl_makefile_dirs:
|
|
|
- $(MAKE) -C opengl makefile_dirs
|
|
|
opengl:
|
|
|
$(MAKE) -C opengl all
|
|
|
-.PHONY: opengl_all opengl_debug opengl_smart opengl_examples opengl_shared opengl_install opengl_sourceinstall opengl_exampleinstall opengl_distinstall opengl_zipinstall opengl_zipsourceinstall opengl_zipexampleinstall opengl_zipdistinstall opengl_clean opengl_distclean opengl_cleanall opengl_info opengl_makefile opengl_makefiles opengl_makefile_dirs opengl
|
|
|
+.PHONY: opengl_all opengl_debug opengl_smart opengl_release opengl_examples opengl_shared opengl_install opengl_sourceinstall opengl_exampleinstall opengl_distinstall opengl_zipinstall opengl_zipsourceinstall opengl_zipexampleinstall opengl_zipdistinstall opengl_clean opengl_distclean opengl_cleanall opengl_info opengl_makefiles opengl
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_FORMS
|
|
|
forms_all:
|
|
@@ -1625,6 +1622,8 @@ forms_debug:
|
|
|
$(MAKE) -C forms debug
|
|
|
forms_smart:
|
|
|
$(MAKE) -C forms smart
|
|
|
+forms_release:
|
|
|
+ $(MAKE) -C forms release
|
|
|
forms_examples:
|
|
|
$(MAKE) -C forms examples
|
|
|
forms_shared:
|
|
@@ -1653,15 +1652,11 @@ forms_cleanall:
|
|
|
$(MAKE) -C forms cleanall
|
|
|
forms_info:
|
|
|
$(MAKE) -C forms info
|
|
|
-forms_makefile:
|
|
|
- $(MAKE) -C forms makefile
|
|
|
forms_makefiles:
|
|
|
$(MAKE) -C forms makefiles
|
|
|
-forms_makefile_dirs:
|
|
|
- $(MAKE) -C forms makefile_dirs
|
|
|
forms:
|
|
|
$(MAKE) -C forms all
|
|
|
-.PHONY: forms_all forms_debug forms_smart forms_examples forms_shared forms_install forms_sourceinstall forms_exampleinstall forms_distinstall forms_zipinstall forms_zipsourceinstall forms_zipexampleinstall forms_zipdistinstall forms_clean forms_distclean forms_cleanall forms_info forms_makefile forms_makefiles forms_makefile_dirs forms
|
|
|
+.PHONY: forms_all forms_debug forms_smart forms_release forms_examples forms_shared forms_install forms_sourceinstall forms_exampleinstall forms_distinstall forms_zipinstall forms_zipsourceinstall forms_zipexampleinstall forms_zipdistinstall forms_clean forms_distclean forms_cleanall forms_info forms_makefiles forms
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_SVGALIB
|
|
|
svgalib_all:
|
|
@@ -1670,6 +1665,8 @@ svgalib_debug:
|
|
|
$(MAKE) -C svgalib debug
|
|
|
svgalib_smart:
|
|
|
$(MAKE) -C svgalib smart
|
|
|
+svgalib_release:
|
|
|
+ $(MAKE) -C svgalib release
|
|
|
svgalib_examples:
|
|
|
$(MAKE) -C svgalib examples
|
|
|
svgalib_shared:
|
|
@@ -1698,15 +1695,11 @@ svgalib_cleanall:
|
|
|
$(MAKE) -C svgalib cleanall
|
|
|
svgalib_info:
|
|
|
$(MAKE) -C svgalib info
|
|
|
-svgalib_makefile:
|
|
|
- $(MAKE) -C svgalib makefile
|
|
|
svgalib_makefiles:
|
|
|
$(MAKE) -C svgalib makefiles
|
|
|
-svgalib_makefile_dirs:
|
|
|
- $(MAKE) -C svgalib makefile_dirs
|
|
|
svgalib:
|
|
|
$(MAKE) -C svgalib all
|
|
|
-.PHONY: svgalib_all svgalib_debug svgalib_smart svgalib_examples svgalib_shared svgalib_install svgalib_sourceinstall svgalib_exampleinstall svgalib_distinstall svgalib_zipinstall svgalib_zipsourceinstall svgalib_zipexampleinstall svgalib_zipdistinstall svgalib_clean svgalib_distclean svgalib_cleanall svgalib_info svgalib_makefile svgalib_makefiles svgalib_makefile_dirs svgalib
|
|
|
+.PHONY: svgalib_all svgalib_debug svgalib_smart svgalib_release svgalib_examples svgalib_shared svgalib_install svgalib_sourceinstall svgalib_exampleinstall svgalib_distinstall svgalib_zipinstall svgalib_zipsourceinstall svgalib_zipexampleinstall svgalib_zipdistinstall svgalib_clean svgalib_distclean svgalib_cleanall svgalib_info svgalib_makefiles svgalib
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_GGI
|
|
|
ggi_all:
|
|
@@ -1715,6 +1708,8 @@ ggi_debug:
|
|
|
$(MAKE) -C ggi debug
|
|
|
ggi_smart:
|
|
|
$(MAKE) -C ggi smart
|
|
|
+ggi_release:
|
|
|
+ $(MAKE) -C ggi release
|
|
|
ggi_examples:
|
|
|
$(MAKE) -C ggi examples
|
|
|
ggi_shared:
|
|
@@ -1743,15 +1738,11 @@ ggi_cleanall:
|
|
|
$(MAKE) -C ggi cleanall
|
|
|
ggi_info:
|
|
|
$(MAKE) -C ggi info
|
|
|
-ggi_makefile:
|
|
|
- $(MAKE) -C ggi makefile
|
|
|
ggi_makefiles:
|
|
|
$(MAKE) -C ggi makefiles
|
|
|
-ggi_makefile_dirs:
|
|
|
- $(MAKE) -C ggi makefile_dirs
|
|
|
ggi:
|
|
|
$(MAKE) -C ggi all
|
|
|
-.PHONY: ggi_all ggi_debug ggi_smart ggi_examples ggi_shared ggi_install ggi_sourceinstall ggi_exampleinstall ggi_distinstall ggi_zipinstall ggi_zipsourceinstall ggi_zipexampleinstall ggi_zipdistinstall ggi_clean ggi_distclean ggi_cleanall ggi_info ggi_makefile ggi_makefiles ggi_makefile_dirs ggi
|
|
|
+.PHONY: ggi_all ggi_debug ggi_smart ggi_release ggi_examples ggi_shared ggi_install ggi_sourceinstall ggi_exampleinstall ggi_distinstall ggi_zipinstall ggi_zipsourceinstall ggi_zipexampleinstall ggi_zipdistinstall ggi_clean ggi_distclean ggi_cleanall ggi_info ggi_makefiles ggi
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_LIBPNG
|
|
|
libpng_all:
|
|
@@ -1760,6 +1751,8 @@ libpng_debug:
|
|
|
$(MAKE) -C libpng debug
|
|
|
libpng_smart:
|
|
|
$(MAKE) -C libpng smart
|
|
|
+libpng_release:
|
|
|
+ $(MAKE) -C libpng release
|
|
|
libpng_examples:
|
|
|
$(MAKE) -C libpng examples
|
|
|
libpng_shared:
|
|
@@ -1788,15 +1781,11 @@ libpng_cleanall:
|
|
|
$(MAKE) -C libpng cleanall
|
|
|
libpng_info:
|
|
|
$(MAKE) -C libpng info
|
|
|
-libpng_makefile:
|
|
|
- $(MAKE) -C libpng makefile
|
|
|
libpng_makefiles:
|
|
|
$(MAKE) -C libpng makefiles
|
|
|
-libpng_makefile_dirs:
|
|
|
- $(MAKE) -C libpng makefile_dirs
|
|
|
libpng:
|
|
|
$(MAKE) -C libpng all
|
|
|
-.PHONY: libpng_all libpng_debug libpng_smart libpng_examples libpng_shared libpng_install libpng_sourceinstall libpng_exampleinstall libpng_distinstall libpng_zipinstall libpng_zipsourceinstall libpng_zipexampleinstall libpng_zipdistinstall libpng_clean libpng_distclean libpng_cleanall libpng_info libpng_makefile libpng_makefiles libpng_makefile_dirs libpng
|
|
|
+.PHONY: libpng_all libpng_debug libpng_smart libpng_release libpng_examples libpng_shared libpng_install libpng_sourceinstall libpng_exampleinstall libpng_distinstall libpng_zipinstall libpng_zipsourceinstall libpng_zipexampleinstall libpng_zipdistinstall libpng_clean libpng_distclean libpng_cleanall libpng_info libpng_makefiles libpng
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_LIBGD
|
|
|
libgd_all:
|
|
@@ -1805,6 +1794,8 @@ libgd_debug:
|
|
|
$(MAKE) -C libgd debug
|
|
|
libgd_smart:
|
|
|
$(MAKE) -C libgd smart
|
|
|
+libgd_release:
|
|
|
+ $(MAKE) -C libgd release
|
|
|
libgd_examples:
|
|
|
$(MAKE) -C libgd examples
|
|
|
libgd_shared:
|
|
@@ -1833,15 +1824,11 @@ libgd_cleanall:
|
|
|
$(MAKE) -C libgd cleanall
|
|
|
libgd_info:
|
|
|
$(MAKE) -C libgd info
|
|
|
-libgd_makefile:
|
|
|
- $(MAKE) -C libgd makefile
|
|
|
libgd_makefiles:
|
|
|
$(MAKE) -C libgd makefiles
|
|
|
-libgd_makefile_dirs:
|
|
|
- $(MAKE) -C libgd makefile_dirs
|
|
|
libgd:
|
|
|
$(MAKE) -C libgd all
|
|
|
-.PHONY: libgd_all libgd_debug libgd_smart libgd_examples libgd_shared libgd_install libgd_sourceinstall libgd_exampleinstall libgd_distinstall libgd_zipinstall libgd_zipsourceinstall libgd_zipexampleinstall libgd_zipdistinstall libgd_clean libgd_distclean libgd_cleanall libgd_info libgd_makefile libgd_makefiles libgd_makefile_dirs libgd
|
|
|
+.PHONY: libgd_all libgd_debug libgd_smart libgd_release libgd_examples libgd_shared libgd_install libgd_sourceinstall libgd_exampleinstall libgd_distinstall libgd_zipinstall libgd_zipsourceinstall libgd_zipexampleinstall libgd_zipdistinstall libgd_clean libgd_distclean libgd_cleanall libgd_info libgd_makefiles libgd
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_UTMP
|
|
|
utmp_all:
|
|
@@ -1850,6 +1837,8 @@ utmp_debug:
|
|
|
$(MAKE) -C utmp debug
|
|
|
utmp_smart:
|
|
|
$(MAKE) -C utmp smart
|
|
|
+utmp_release:
|
|
|
+ $(MAKE) -C utmp release
|
|
|
utmp_examples:
|
|
|
$(MAKE) -C utmp examples
|
|
|
utmp_shared:
|
|
@@ -1878,15 +1867,11 @@ utmp_cleanall:
|
|
|
$(MAKE) -C utmp cleanall
|
|
|
utmp_info:
|
|
|
$(MAKE) -C utmp info
|
|
|
-utmp_makefile:
|
|
|
- $(MAKE) -C utmp makefile
|
|
|
utmp_makefiles:
|
|
|
$(MAKE) -C utmp makefiles
|
|
|
-utmp_makefile_dirs:
|
|
|
- $(MAKE) -C utmp makefile_dirs
|
|
|
utmp:
|
|
|
$(MAKE) -C utmp all
|
|
|
-.PHONY: utmp_all utmp_debug utmp_smart utmp_examples utmp_shared utmp_install utmp_sourceinstall utmp_exampleinstall utmp_distinstall utmp_zipinstall utmp_zipsourceinstall utmp_zipexampleinstall utmp_zipdistinstall utmp_clean utmp_distclean utmp_cleanall utmp_info utmp_makefile utmp_makefiles utmp_makefile_dirs utmp
|
|
|
+.PHONY: utmp_all utmp_debug utmp_smart utmp_release utmp_examples utmp_shared utmp_install utmp_sourceinstall utmp_exampleinstall utmp_distinstall utmp_zipinstall utmp_zipsourceinstall utmp_zipexampleinstall utmp_zipdistinstall utmp_clean utmp_distclean utmp_cleanall utmp_info utmp_makefiles utmp
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_PASZLIB
|
|
|
paszlib_all:
|
|
@@ -1895,6 +1880,8 @@ paszlib_debug:
|
|
|
$(MAKE) -C paszlib debug
|
|
|
paszlib_smart:
|
|
|
$(MAKE) -C paszlib smart
|
|
|
+paszlib_release:
|
|
|
+ $(MAKE) -C paszlib release
|
|
|
paszlib_examples:
|
|
|
$(MAKE) -C paszlib examples
|
|
|
paszlib_shared:
|
|
@@ -1923,15 +1910,11 @@ paszlib_cleanall:
|
|
|
$(MAKE) -C paszlib cleanall
|
|
|
paszlib_info:
|
|
|
$(MAKE) -C paszlib info
|
|
|
-paszlib_makefile:
|
|
|
- $(MAKE) -C paszlib makefile
|
|
|
paszlib_makefiles:
|
|
|
$(MAKE) -C paszlib makefiles
|
|
|
-paszlib_makefile_dirs:
|
|
|
- $(MAKE) -C paszlib makefile_dirs
|
|
|
paszlib:
|
|
|
$(MAKE) -C paszlib all
|
|
|
-.PHONY: paszlib_all paszlib_debug paszlib_smart paszlib_examples paszlib_shared paszlib_install paszlib_sourceinstall paszlib_exampleinstall paszlib_distinstall paszlib_zipinstall paszlib_zipsourceinstall paszlib_zipexampleinstall paszlib_zipdistinstall paszlib_clean paszlib_distclean paszlib_cleanall paszlib_info paszlib_makefile paszlib_makefiles paszlib_makefile_dirs paszlib
|
|
|
+.PHONY: paszlib_all paszlib_debug paszlib_smart paszlib_release paszlib_examples paszlib_shared paszlib_install paszlib_sourceinstall paszlib_exampleinstall paszlib_distinstall paszlib_zipinstall paszlib_zipsourceinstall paszlib_zipexampleinstall paszlib_zipdistinstall paszlib_clean paszlib_distclean paszlib_cleanall paszlib_info paszlib_makefiles paszlib
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_GDBINT
|
|
|
gdbint_all:
|
|
@@ -1940,6 +1923,8 @@ gdbint_debug:
|
|
|
$(MAKE) -C gdbint debug
|
|
|
gdbint_smart:
|
|
|
$(MAKE) -C gdbint smart
|
|
|
+gdbint_release:
|
|
|
+ $(MAKE) -C gdbint release
|
|
|
gdbint_examples:
|
|
|
$(MAKE) -C gdbint examples
|
|
|
gdbint_shared:
|
|
@@ -1968,15 +1953,11 @@ gdbint_cleanall:
|
|
|
$(MAKE) -C gdbint cleanall
|
|
|
gdbint_info:
|
|
|
$(MAKE) -C gdbint info
|
|
|
-gdbint_makefile:
|
|
|
- $(MAKE) -C gdbint makefile
|
|
|
gdbint_makefiles:
|
|
|
$(MAKE) -C gdbint makefiles
|
|
|
-gdbint_makefile_dirs:
|
|
|
- $(MAKE) -C gdbint makefile_dirs
|
|
|
gdbint:
|
|
|
$(MAKE) -C gdbint all
|
|
|
-.PHONY: gdbint_all gdbint_debug gdbint_smart gdbint_examples gdbint_shared gdbint_install gdbint_sourceinstall gdbint_exampleinstall gdbint_distinstall gdbint_zipinstall gdbint_zipsourceinstall gdbint_zipexampleinstall gdbint_zipdistinstall gdbint_clean gdbint_distclean gdbint_cleanall gdbint_info gdbint_makefile gdbint_makefiles gdbint_makefile_dirs gdbint
|
|
|
+.PHONY: gdbint_all gdbint_debug gdbint_smart gdbint_release gdbint_examples gdbint_shared gdbint_install gdbint_sourceinstall gdbint_exampleinstall gdbint_distinstall gdbint_zipinstall gdbint_zipsourceinstall gdbint_zipexampleinstall gdbint_zipdistinstall gdbint_clean gdbint_distclean gdbint_cleanall gdbint_info gdbint_makefiles gdbint
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_CMEM
|
|
|
cmem_all:
|
|
@@ -1985,6 +1966,8 @@ cmem_debug:
|
|
|
$(MAKE) -C cmem debug
|
|
|
cmem_smart:
|
|
|
$(MAKE) -C cmem smart
|
|
|
+cmem_release:
|
|
|
+ $(MAKE) -C cmem release
|
|
|
cmem_examples:
|
|
|
$(MAKE) -C cmem examples
|
|
|
cmem_shared:
|
|
@@ -2013,15 +1996,11 @@ cmem_cleanall:
|
|
|
$(MAKE) -C cmem cleanall
|
|
|
cmem_info:
|
|
|
$(MAKE) -C cmem info
|
|
|
-cmem_makefile:
|
|
|
- $(MAKE) -C cmem makefile
|
|
|
cmem_makefiles:
|
|
|
$(MAKE) -C cmem makefiles
|
|
|
-cmem_makefile_dirs:
|
|
|
- $(MAKE) -C cmem makefile_dirs
|
|
|
cmem:
|
|
|
$(MAKE) -C cmem all
|
|
|
-.PHONY: cmem_all cmem_debug cmem_smart cmem_examples cmem_shared cmem_install cmem_sourceinstall cmem_exampleinstall cmem_distinstall cmem_zipinstall cmem_zipsourceinstall cmem_zipexampleinstall cmem_zipdistinstall cmem_clean cmem_distclean cmem_cleanall cmem_info cmem_makefile cmem_makefiles cmem_makefile_dirs cmem
|
|
|
+.PHONY: cmem_all cmem_debug cmem_smart cmem_release cmem_examples cmem_shared cmem_install cmem_sourceinstall cmem_exampleinstall cmem_distinstall cmem_zipinstall cmem_zipsourceinstall cmem_zipexampleinstall cmem_zipdistinstall cmem_clean cmem_distclean cmem_cleanall cmem_info cmem_makefiles cmem
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_REGEXPR
|
|
|
regexpr_all:
|
|
@@ -2030,6 +2009,8 @@ regexpr_debug:
|
|
|
$(MAKE) -C regexpr debug
|
|
|
regexpr_smart:
|
|
|
$(MAKE) -C regexpr smart
|
|
|
+regexpr_release:
|
|
|
+ $(MAKE) -C regexpr release
|
|
|
regexpr_examples:
|
|
|
$(MAKE) -C regexpr examples
|
|
|
regexpr_shared:
|
|
@@ -2058,15 +2039,11 @@ regexpr_cleanall:
|
|
|
$(MAKE) -C regexpr cleanall
|
|
|
regexpr_info:
|
|
|
$(MAKE) -C regexpr info
|
|
|
-regexpr_makefile:
|
|
|
- $(MAKE) -C regexpr makefile
|
|
|
regexpr_makefiles:
|
|
|
$(MAKE) -C regexpr makefiles
|
|
|
-regexpr_makefile_dirs:
|
|
|
- $(MAKE) -C regexpr makefile_dirs
|
|
|
regexpr:
|
|
|
$(MAKE) -C regexpr all
|
|
|
-.PHONY: regexpr_all regexpr_debug regexpr_smart regexpr_examples regexpr_shared regexpr_install regexpr_sourceinstall regexpr_exampleinstall regexpr_distinstall regexpr_zipinstall regexpr_zipsourceinstall regexpr_zipexampleinstall regexpr_zipdistinstall regexpr_clean regexpr_distclean regexpr_cleanall regexpr_info regexpr_makefile regexpr_makefiles regexpr_makefile_dirs regexpr
|
|
|
+.PHONY: regexpr_all regexpr_debug regexpr_smart regexpr_release regexpr_examples regexpr_shared regexpr_install regexpr_sourceinstall regexpr_exampleinstall regexpr_distinstall regexpr_zipinstall regexpr_zipsourceinstall regexpr_zipexampleinstall regexpr_zipdistinstall regexpr_clean regexpr_distclean regexpr_cleanall regexpr_info regexpr_makefiles regexpr
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_UNZIP
|
|
|
unzip_all:
|
|
@@ -2075,6 +2052,8 @@ unzip_debug:
|
|
|
$(MAKE) -C unzip debug
|
|
|
unzip_smart:
|
|
|
$(MAKE) -C unzip smart
|
|
|
+unzip_release:
|
|
|
+ $(MAKE) -C unzip release
|
|
|
unzip_examples:
|
|
|
$(MAKE) -C unzip examples
|
|
|
unzip_shared:
|
|
@@ -2103,15 +2082,11 @@ unzip_cleanall:
|
|
|
$(MAKE) -C unzip cleanall
|
|
|
unzip_info:
|
|
|
$(MAKE) -C unzip info
|
|
|
-unzip_makefile:
|
|
|
- $(MAKE) -C unzip makefile
|
|
|
unzip_makefiles:
|
|
|
$(MAKE) -C unzip makefiles
|
|
|
-unzip_makefile_dirs:
|
|
|
- $(MAKE) -C unzip makefile_dirs
|
|
|
unzip:
|
|
|
$(MAKE) -C unzip all
|
|
|
-.PHONY: unzip_all unzip_debug unzip_smart unzip_examples unzip_shared unzip_install unzip_sourceinstall unzip_exampleinstall unzip_distinstall unzip_zipinstall unzip_zipsourceinstall unzip_zipexampleinstall unzip_zipdistinstall unzip_clean unzip_distclean unzip_cleanall unzip_info unzip_makefile unzip_makefiles unzip_makefile_dirs unzip
|
|
|
+.PHONY: unzip_all unzip_debug unzip_smart unzip_release unzip_examples unzip_shared unzip_install unzip_sourceinstall unzip_exampleinstall unzip_distinstall unzip_zipinstall unzip_zipsourceinstall unzip_zipexampleinstall unzip_zipdistinstall unzip_clean unzip_distclean unzip_cleanall unzip_info unzip_makefiles unzip
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_MMSYSTEM
|
|
|
mmsystem_all:
|
|
@@ -2120,6 +2095,8 @@ mmsystem_debug:
|
|
|
$(MAKE) -C mmsystem debug
|
|
|
mmsystem_smart:
|
|
|
$(MAKE) -C mmsystem smart
|
|
|
+mmsystem_release:
|
|
|
+ $(MAKE) -C mmsystem release
|
|
|
mmsystem_examples:
|
|
|
$(MAKE) -C mmsystem examples
|
|
|
mmsystem_shared:
|
|
@@ -2148,15 +2125,11 @@ mmsystem_cleanall:
|
|
|
$(MAKE) -C mmsystem cleanall
|
|
|
mmsystem_info:
|
|
|
$(MAKE) -C mmsystem info
|
|
|
-mmsystem_makefile:
|
|
|
- $(MAKE) -C mmsystem makefile
|
|
|
mmsystem_makefiles:
|
|
|
$(MAKE) -C mmsystem makefiles
|
|
|
-mmsystem_makefile_dirs:
|
|
|
- $(MAKE) -C mmsystem makefile_dirs
|
|
|
mmsystem:
|
|
|
$(MAKE) -C mmsystem all
|
|
|
-.PHONY: mmsystem_all mmsystem_debug mmsystem_smart mmsystem_examples mmsystem_shared mmsystem_install mmsystem_sourceinstall mmsystem_exampleinstall mmsystem_distinstall mmsystem_zipinstall mmsystem_zipsourceinstall mmsystem_zipexampleinstall mmsystem_zipdistinstall mmsystem_clean mmsystem_distclean mmsystem_cleanall mmsystem_info mmsystem_makefile mmsystem_makefiles mmsystem_makefile_dirs mmsystem
|
|
|
+.PHONY: mmsystem_all mmsystem_debug mmsystem_smart mmsystem_release mmsystem_examples mmsystem_shared mmsystem_install mmsystem_sourceinstall mmsystem_exampleinstall mmsystem_distinstall mmsystem_zipinstall mmsystem_zipsourceinstall mmsystem_zipexampleinstall mmsystem_zipdistinstall mmsystem_clean mmsystem_distclean mmsystem_cleanall mmsystem_info mmsystem_makefiles mmsystem
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_ASYNCIO
|
|
|
asyncio_all:
|
|
@@ -2165,6 +2138,8 @@ asyncio_debug:
|
|
|
$(MAKE) -C asyncio debug
|
|
|
asyncio_smart:
|
|
|
$(MAKE) -C asyncio smart
|
|
|
+asyncio_release:
|
|
|
+ $(MAKE) -C asyncio release
|
|
|
asyncio_examples:
|
|
|
$(MAKE) -C asyncio examples
|
|
|
asyncio_shared:
|
|
@@ -2193,15 +2168,11 @@ asyncio_cleanall:
|
|
|
$(MAKE) -C asyncio cleanall
|
|
|
asyncio_info:
|
|
|
$(MAKE) -C asyncio info
|
|
|
-asyncio_makefile:
|
|
|
- $(MAKE) -C asyncio makefile
|
|
|
asyncio_makefiles:
|
|
|
$(MAKE) -C asyncio makefiles
|
|
|
-asyncio_makefile_dirs:
|
|
|
- $(MAKE) -C asyncio makefile_dirs
|
|
|
asyncio:
|
|
|
$(MAKE) -C asyncio all
|
|
|
-.PHONY: asyncio_all asyncio_debug asyncio_smart asyncio_examples asyncio_shared asyncio_install asyncio_sourceinstall asyncio_exampleinstall asyncio_distinstall asyncio_zipinstall asyncio_zipsourceinstall asyncio_zipexampleinstall asyncio_zipdistinstall asyncio_clean asyncio_distclean asyncio_cleanall asyncio_info asyncio_makefile asyncio_makefiles asyncio_makefile_dirs asyncio
|
|
|
+.PHONY: asyncio_all asyncio_debug asyncio_smart asyncio_release asyncio_examples asyncio_shared asyncio_install asyncio_sourceinstall asyncio_exampleinstall asyncio_distinstall asyncio_zipinstall asyncio_zipsourceinstall asyncio_zipexampleinstall asyncio_zipdistinstall asyncio_clean asyncio_distclean asyncio_cleanall asyncio_info asyncio_makefiles asyncio
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_BFD
|
|
|
bfd_all:
|
|
@@ -2210,6 +2181,8 @@ bfd_debug:
|
|
|
$(MAKE) -C bfd debug
|
|
|
bfd_smart:
|
|
|
$(MAKE) -C bfd smart
|
|
|
+bfd_release:
|
|
|
+ $(MAKE) -C bfd release
|
|
|
bfd_examples:
|
|
|
$(MAKE) -C bfd examples
|
|
|
bfd_shared:
|
|
@@ -2238,15 +2211,11 @@ bfd_cleanall:
|
|
|
$(MAKE) -C bfd cleanall
|
|
|
bfd_info:
|
|
|
$(MAKE) -C bfd info
|
|
|
-bfd_makefile:
|
|
|
- $(MAKE) -C bfd makefile
|
|
|
bfd_makefiles:
|
|
|
$(MAKE) -C bfd makefiles
|
|
|
-bfd_makefile_dirs:
|
|
|
- $(MAKE) -C bfd makefile_dirs
|
|
|
bfd:
|
|
|
$(MAKE) -C bfd all
|
|
|
-.PHONY: bfd_all bfd_debug bfd_smart bfd_examples bfd_shared bfd_install bfd_sourceinstall bfd_exampleinstall bfd_distinstall bfd_zipinstall bfd_zipsourceinstall bfd_zipexampleinstall bfd_zipdistinstall bfd_clean bfd_distclean bfd_cleanall bfd_info bfd_makefile bfd_makefiles bfd_makefile_dirs bfd
|
|
|
+.PHONY: bfd_all bfd_debug bfd_smart bfd_release bfd_examples bfd_shared bfd_install bfd_sourceinstall bfd_exampleinstall bfd_distinstall bfd_zipinstall bfd_zipsourceinstall bfd_zipexampleinstall bfd_zipdistinstall bfd_clean bfd_distclean bfd_cleanall bfd_info bfd_makefiles bfd
|
|
|
endif
|
|
|
ifdef TARGET_DIRS_GDBM
|
|
|
gdbm_all:
|
|
@@ -2255,6 +2224,8 @@ gdbm_debug:
|
|
|
$(MAKE) -C gdbm debug
|
|
|
gdbm_smart:
|
|
|
$(MAKE) -C gdbm smart
|
|
|
+gdbm_release:
|
|
|
+ $(MAKE) -C gdbm release
|
|
|
gdbm_examples:
|
|
|
$(MAKE) -C gdbm examples
|
|
|
gdbm_shared:
|
|
@@ -2283,19 +2254,16 @@ gdbm_cleanall:
|
|
|
$(MAKE) -C gdbm cleanall
|
|
|
gdbm_info:
|
|
|
$(MAKE) -C gdbm info
|
|
|
-gdbm_makefile:
|
|
|
- $(MAKE) -C gdbm makefile
|
|
|
gdbm_makefiles:
|
|
|
$(MAKE) -C gdbm makefiles
|
|
|
-gdbm_makefile_dirs:
|
|
|
- $(MAKE) -C gdbm makefile_dirs
|
|
|
gdbm:
|
|
|
$(MAKE) -C gdbm all
|
|
|
-.PHONY: gdbm_all gdbm_debug gdbm_smart gdbm_examples gdbm_shared gdbm_install gdbm_sourceinstall gdbm_exampleinstall gdbm_distinstall gdbm_zipinstall gdbm_zipsourceinstall gdbm_zipexampleinstall gdbm_zipdistinstall gdbm_clean gdbm_distclean gdbm_cleanall gdbm_info gdbm_makefile gdbm_makefiles gdbm_makefile_dirs gdbm
|
|
|
+.PHONY: gdbm_all gdbm_debug gdbm_smart gdbm_release gdbm_examples gdbm_shared gdbm_install gdbm_sourceinstall gdbm_exampleinstall gdbm_distinstall gdbm_zipinstall gdbm_zipsourceinstall gdbm_zipexampleinstall gdbm_zipdistinstall gdbm_clean gdbm_distclean gdbm_cleanall gdbm_info gdbm_makefiles gdbm
|
|
|
endif
|
|
|
all: $(addsuffix _all,$(TARGET_DIRS))
|
|
|
debug: $(addsuffix _debug,$(TARGET_DIRS))
|
|
|
smart: $(addsuffix _smart,$(TARGET_DIRS))
|
|
|
+release: $(addsuffix _release,$(TARGET_DIRS))
|
|
|
examples: $(addsuffix _examples,$(TARGET_DIRS))
|
|
|
shared: $(addsuffix _shared,$(TARGET_DIRS))
|
|
|
install: $(addsuffix _install,$(TARGET_DIRS))
|
|
@@ -2310,10 +2278,8 @@ clean: $(addsuffix _clean,$(TARGET_DIRS))
|
|
|
distclean: $(addsuffix _distclean,$(TARGET_DIRS))
|
|
|
cleanall: $(addsuffix _cleanall,$(TARGET_DIRS))
|
|
|
info: fpc_info
|
|
|
-makefile: fpc_makefile $(addsuffix _makefile,$(TARGET_DIRS))
|
|
|
makefiles: fpc_makefiles $(addsuffix _makefiles,$(TARGET_DIRS))
|
|
|
-makefile_dirs: fpc_makefile_dirs $(addsuffix _makefile_dirs,$(TARGET_DIRS))
|
|
|
-.PHONY: all debug smart examples shared install sourceinstall exampleinstall distinstall zipinstall zipsourceinstall zipexampleinstall zipdistinstall clean distclean cleanall info makefile makefiles makefile_dirs
|
|
|
+.PHONY: all debug smart release examples shared install sourceinstall exampleinstall distinstall zipinstall zipsourceinstall zipexampleinstall zipdistinstall clean distclean cleanall info makefiles
|
|
|
ifneq ($(wildcard fpcmake.loc),)
|
|
|
include fpcmake.loc
|
|
|
endif
|