mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 03:28:04 +02:00
Fix directories for some source files, based on suggestion by Alfred Glänzer in #40995
This commit is contained in:
parent
b3e8d88f68
commit
930596bd85
@ -2402,6 +2402,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2409,14 +2412,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2657,19 +2660,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2689,9 +2698,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2429,6 +2429,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2436,14 +2439,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2684,19 +2687,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2716,9 +2725,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -925,6 +925,7 @@ DL_DEPS_OS=dlandroid.inc
|
||||
TERMIODIR=$(LINUXINC)
|
||||
PTHREADINCDIR=$(LINUXINC)
|
||||
PTYPESINCDIR=$(LINUXINC)
|
||||
UNXINC=$(LINUXINC)
|
||||
SYSTEMDIR = $(LINUXINC)
|
||||
SYSCALL_DEPS_OS=$(LINUXINC)/$(ARCH)/syscallh.inc $(LINUXINC)/$(ARCH)/sysnr.inc
|
||||
SYSUTILS_DEPS_OS=$(DLUNIT)$(PPUEXT) $(UNIXUNIT)$(PPUEXT) $(ERRORSUNIT)$(PPUEXT)
|
||||
@ -2551,6 +2552,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2558,14 +2562,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2806,19 +2810,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2838,9 +2848,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -58,6 +58,7 @@ DL_DEPS_OS=dlandroid.inc
|
||||
TERMIODIR=$(LINUXINC)
|
||||
PTHREADINCDIR=$(LINUXINC)
|
||||
PTYPESINCDIR=$(LINUXINC)
|
||||
UNXINC=$(LINUXINC)
|
||||
|
||||
SYSTEMDIR = $(LINUXINC)
|
||||
SYSCALL_DEPS_OS=$(LINUXINC)/$(ARCH)/syscallh.inc $(LINUXINC)/$(ARCH)/sysnr.inc
|
||||
|
@ -2444,6 +2444,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2451,14 +2454,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2699,19 +2702,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2731,9 +2740,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2399,6 +2399,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2406,14 +2409,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2654,19 +2657,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2686,9 +2695,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2408,6 +2408,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2415,14 +2418,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2663,19 +2666,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2695,9 +2704,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2522,6 +2522,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2529,14 +2532,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2777,19 +2780,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2809,9 +2818,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2416,6 +2416,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2423,14 +2426,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2671,19 +2674,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2703,9 +2712,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2781,6 +2781,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2788,14 +2791,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -3036,19 +3039,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -3068,9 +3077,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2408,6 +2408,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2415,14 +2418,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2663,19 +2666,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2695,9 +2704,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2458,6 +2458,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2465,14 +2468,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2713,19 +2716,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2745,9 +2754,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2489,6 +2489,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2496,14 +2499,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2744,19 +2747,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2776,9 +2785,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2397,6 +2397,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2404,14 +2407,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2652,19 +2655,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2684,9 +2693,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2410,6 +2410,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2417,14 +2420,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2665,19 +2668,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2697,9 +2706,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2440,6 +2440,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2447,14 +2450,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2695,19 +2698,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2727,9 +2736,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2399,6 +2399,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2406,14 +2409,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2654,19 +2657,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2686,9 +2695,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -926,6 +926,9 @@ UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
#
|
||||
# Linux
|
||||
#
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -934,7 +937,7 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
endif
|
||||
endif
|
||||
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
|
||||
@ -946,7 +949,8 @@ LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
#
|
||||
# linuxvcs
|
||||
#
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
@ -1401,9 +1405,12 @@ System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
#
|
||||
# Baseunix
|
||||
#
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
|
||||
@ -1416,12 +1423,15 @@ UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
#
|
||||
# Unix
|
||||
#
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
@ -1461,10 +1471,6 @@ UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
#
|
||||
# UnixType
|
||||
#
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2370,6 +2370,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2377,14 +2380,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2625,19 +2628,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2657,9 +2666,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -3017,6 +3017,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -3024,14 +3027,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -3272,19 +3275,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -3304,9 +3313,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2388,6 +2388,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2395,14 +2398,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2643,19 +2646,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2675,9 +2684,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2371,6 +2371,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2378,14 +2381,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2626,19 +2629,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2658,9 +2667,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2402,6 +2402,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2409,14 +2412,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2657,19 +2660,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2689,9 +2698,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2372,6 +2372,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2379,14 +2382,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2627,19 +2630,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2659,9 +2668,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2378,6 +2378,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2385,14 +2388,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2633,19 +2636,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2665,9 +2674,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2400,6 +2400,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2407,14 +2410,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2655,19 +2658,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2687,9 +2696,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2510,6 +2510,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2517,14 +2520,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2765,19 +2768,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2797,9 +2806,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2415,6 +2415,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2422,14 +2425,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2670,19 +2673,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2702,9 +2711,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2403,6 +2403,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2410,14 +2413,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2658,19 +2661,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2690,9 +2699,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2443,6 +2443,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2450,14 +2453,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2698,19 +2701,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2730,9 +2739,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2407,6 +2407,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2414,14 +2417,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2662,19 +2665,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2694,9 +2703,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2410,6 +2410,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2417,14 +2420,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2665,19 +2668,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2697,9 +2706,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2368,6 +2368,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2375,14 +2378,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2623,19 +2626,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2655,9 +2664,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2399,6 +2399,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2406,14 +2409,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2654,19 +2657,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2686,9 +2695,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2415,6 +2415,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2422,14 +2425,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2670,19 +2673,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2702,9 +2711,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2393,6 +2393,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2400,14 +2403,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2648,19 +2651,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2680,9 +2689,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2376,6 +2376,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2383,14 +2386,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2631,19 +2634,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2663,9 +2672,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2406,6 +2406,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2413,14 +2416,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2661,19 +2664,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2693,9 +2702,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2369,6 +2369,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2376,14 +2379,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2624,19 +2627,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2656,9 +2665,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2405,6 +2405,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2412,14 +2415,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2660,19 +2663,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2692,9 +2701,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2416,6 +2416,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2423,14 +2426,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2671,19 +2674,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2703,9 +2712,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2437,6 +2437,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2444,14 +2447,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2692,19 +2695,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2724,9 +2733,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2395,6 +2395,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2402,14 +2405,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2650,19 +2653,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2682,9 +2691,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
@ -2368,6 +2368,9 @@ unixcp$(PPUEXT) : $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $(UNIXINC)/unixcp.pp
|
||||
UnixApi.CP$(PPUEXT) : $(NSINC)/UnixApi.CP.pp $(UNIXCP_DEPS)
|
||||
$(COMPILER) $(UNIXCP_OPT) $<
|
||||
ifndef LINUXINC
|
||||
LINUXINC=$(OSDIR)
|
||||
endif
|
||||
ifeq ($(filter -dFPC_USE_LIBC,$(FPCOPT)),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
else
|
||||
@ -2375,14 +2378,14 @@ ifneq ($(filter $(CPU_TARGET),i386 x86_64),)
|
||||
LINUX_DEPS_OS+=$(SYSCALLUNIT)$(PPUEXT)
|
||||
endif
|
||||
endif
|
||||
LINUX_DEPS=$(OSDIR)/linux.pp \
|
||||
LINUX_DEPS=$(LINUXINC)/linux.pp \
|
||||
$(BASEUNIXUNIT)$(PPUEXT) $(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUX_DEPS_OS) $(LINUX_DEPS_CPU)
|
||||
linux$(PPUEXT): $(LINUX_DEPS)
|
||||
$(COMPILER) $<
|
||||
LinuxApi$(PPUEXT): $(NSOSDIR)/LinuxApi.pp $(LINUX_DEPS)
|
||||
$(COMPILER) $(LINUX_OPT) $<
|
||||
LINUXVCS_DEPS=$(OSDIR)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
LINUXVCS_DEPS=$(LINUXINC)/linuxvcs.pp $(BASEUNIXUNIT)$(PPUEXT) $(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(LINUXVCS_DEPS_OS) $(LINUXVCS_DEPS_CPU)
|
||||
linuxvcs$(PPUEXT): $(LINUXVCS_DEPS)
|
||||
$(COMPILER) $(LINUXVCS_OPT) $<
|
||||
@ -2623,19 +2626,25 @@ cmem$(PPUEXT) : $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
System.CMem$(PPUEXT) : $(NSINC)/System.CMem.pp $(CMEM_DEPS)
|
||||
$(COMPILER) $(CMEM_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
BASEUNIX_DEPS=$(BASEUNIXDIR)/baseunix.pp $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(OSDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXINC)/bunxh.inc $(UNIXINC)/gensigset.inc $(PTYPESINCDIR)/ptypes.inc $(OSDIR)/errno.inc \
|
||||
$(UNIXTYPEUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) \
|
||||
$(BASEUNIX_DEPS_OS) $(BASEUNIX_DEPS_CPU)
|
||||
baseunix$(PPUEXT): $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
UnixApi.Base$(PPUEXT): $(NSINC)/UnixApi.Base.pp $(BASEUNIX_DEPS)
|
||||
$(COMPILER) $(BASEUNIX_OPT) $<
|
||||
ifndef UNXINC
|
||||
UNXINC=$(OSDIR)
|
||||
endif
|
||||
UNIX_DEPS=$(UNIXINC)/unix.pp \
|
||||
$(STRINGSUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT) $(BASEUNIXUNIT)$(PPUEXT) \
|
||||
$(UNIXUTILUNIT)$(PPUEXT) \
|
||||
$(INC)/textrec.inc $(INC)/filerec.inc $(UNIXINC)/timezone.inc \
|
||||
$(OSDIR)/unxconst.inc $(OSDIR)/unxfunc.inc \
|
||||
$(UNXINC)/unxconst.inc $(UNXINC)/unxfunc.inc \
|
||||
$(UNIX_DEPS_OS) $(UNIX_DEPS_CPU)
|
||||
unix$(PPUEXT): $(UNIX_DEPS)
|
||||
$(COMPILER) $(UNIX_OPT) $<
|
||||
@ -2655,9 +2664,6 @@ unixutil$(PPUEXT) : $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
UnixApi.Utils$(PPUEXT) : $(NSINC)/UnixApi.Utils.pp $(UNIXUTIL_DEPS)
|
||||
$(COMPILER) $(UNIXUTIL_OPT) $<
|
||||
ifndef PTYPESINCDIR
|
||||
PTYPESINCDIR=$(OSDIR)
|
||||
endif
|
||||
UNIXTYPE_DEPS=$(UNIXINC)/unixtype.pp \
|
||||
$(SYSTEMUNIT)$(PPUEXT) $(PTYPESINCDIR)/ptypes.inc $(UNIXINC)/ctypes.inc \
|
||||
$(UNIXTYPE_DEPS_OS) $(UNIXTYPE_DEPS_CPU)
|
||||
|
Loading…
Reference in New Issue
Block a user