mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 16:59:11 +02:00
* Why didn't the unix platforms make ncurses?
This commit is contained in:
parent
62e4cfefc1
commit
2a69402e3f
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Don't edit, this file is generated by FPCMake Version 1.1 [2002/01/29]
|
# Don't edit, this file is generated by FPCMake Version 1.1 [2002/02/04]
|
||||||
#
|
#
|
||||||
default: all
|
default: all
|
||||||
MAKEFILETARGETS=linux go32v2 win32 os2 freebsd beos netbsd amiga atari sunos qnx
|
MAKEFILETARGETS=linux go32v2 win32 os2 freebsd beos netbsd amiga atari sunos qnx
|
||||||
@ -181,7 +181,7 @@ endif
|
|||||||
PACKAGESDIR:=$(wildcard $(FPCDIR) $(FPCDIR)/packages/base $(FPCDIR)/packages/extra)
|
PACKAGESDIR:=$(wildcard $(FPCDIR) $(FPCDIR)/packages/base $(FPCDIR)/packages/extra)
|
||||||
override TARGET_DIRS+=unzip
|
override TARGET_DIRS+=unzip
|
||||||
ifeq ($(OS_TARGET),linux)
|
ifeq ($(OS_TARGET),linux)
|
||||||
override TARGET_DIRS+=uncgi fpasync x11 opengl gtk syslog forms svgalib ggi libpng libgd utmp cmem bfd zlib gdbm
|
override TARGET_DIRS+=uncgi fpasync x11 opengl gtk syslog forms svgalib ggi libpng libgd utmp cmem bfd zlib gdbm ncurses
|
||||||
endif
|
endif
|
||||||
ifeq ($(OS_TARGET),go32v2)
|
ifeq ($(OS_TARGET),go32v2)
|
||||||
override TARGET_DIRS+=uncgi
|
override TARGET_DIRS+=uncgi
|
||||||
@ -193,10 +193,10 @@ ifeq ($(OS_TARGET),os2)
|
|||||||
override TARGET_DIRS+=uncgi
|
override TARGET_DIRS+=uncgi
|
||||||
endif
|
endif
|
||||||
ifeq ($(OS_TARGET),freebsd)
|
ifeq ($(OS_TARGET),freebsd)
|
||||||
override TARGET_DIRS+=uncgi fpasync x11 opengl gtk syslog forms svgalib ggi libpng libgd utmp cmem bfd zlib gdbm
|
override TARGET_DIRS+=uncgi fpasync x11 opengl gtk syslog forms svgalib ggi libpng libgd utmp cmem bfd zlib gdbm ncurses
|
||||||
endif
|
endif
|
||||||
ifeq ($(OS_TARGET),netbsd)
|
ifeq ($(OS_TARGET),netbsd)
|
||||||
override TARGET_DIRS+=uncgi fpasync x11 opengl gtk syslog forms svgalib ggi libpng libgd utmp cmem bfd zlib gdbm
|
override TARGET_DIRS+=uncgi fpasync x11 opengl gtk syslog forms svgalib ggi libpng libgd utmp cmem bfd zlib gdbm ncurses
|
||||||
endif
|
endif
|
||||||
override INSTALL_FPCPACKAGE=y
|
override INSTALL_FPCPACKAGE=y
|
||||||
ifdef REQUIRE_UNITSDIR
|
ifdef REQUIRE_UNITSDIR
|
||||||
@ -990,6 +990,7 @@ TARGET_DIRS_CMEM=1
|
|||||||
TARGET_DIRS_BFD=1
|
TARGET_DIRS_BFD=1
|
||||||
TARGET_DIRS_ZLIB=1
|
TARGET_DIRS_ZLIB=1
|
||||||
TARGET_DIRS_GDBM=1
|
TARGET_DIRS_GDBM=1
|
||||||
|
TARGET_DIRS_NCURSES=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(OS_TARGET),go32v2)
|
ifeq ($(OS_TARGET),go32v2)
|
||||||
TARGET_DIRS_UNCGI=1
|
TARGET_DIRS_UNCGI=1
|
||||||
@ -1021,6 +1022,7 @@ TARGET_DIRS_CMEM=1
|
|||||||
TARGET_DIRS_BFD=1
|
TARGET_DIRS_BFD=1
|
||||||
TARGET_DIRS_ZLIB=1
|
TARGET_DIRS_ZLIB=1
|
||||||
TARGET_DIRS_GDBM=1
|
TARGET_DIRS_GDBM=1
|
||||||
|
TARGET_DIRS_NCURSES=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(OS_TARGET),netbsd)
|
ifeq ($(OS_TARGET),netbsd)
|
||||||
TARGET_DIRS_UNCGI=1
|
TARGET_DIRS_UNCGI=1
|
||||||
@ -1039,6 +1041,7 @@ TARGET_DIRS_CMEM=1
|
|||||||
TARGET_DIRS_BFD=1
|
TARGET_DIRS_BFD=1
|
||||||
TARGET_DIRS_ZLIB=1
|
TARGET_DIRS_ZLIB=1
|
||||||
TARGET_DIRS_GDBM=1
|
TARGET_DIRS_GDBM=1
|
||||||
|
TARGET_DIRS_NCURSES=1
|
||||||
endif
|
endif
|
||||||
ifdef TARGET_DIRS_UNZIP
|
ifdef TARGET_DIRS_UNZIP
|
||||||
unzip_all:
|
unzip_all:
|
||||||
@ -1771,6 +1774,49 @@ gdbm:
|
|||||||
$(MAKE) -C gdbm all
|
$(MAKE) -C gdbm all
|
||||||
.PHONY: gdbm_all gdbm_debug gdbm_smart gdbm_release gdbm_examples gdbm_shared gdbm_install gdbm_sourceinstall gdbm_exampleinstall gdbm_distinstall gdbm_zipinstall gdbm_zipsourceinstall gdbm_zipexampleinstall gdbm_zipdistinstall gdbm_clean gdbm_distclean gdbm_cleanall gdbm_info gdbm_makefiles gdbm
|
.PHONY: gdbm_all gdbm_debug gdbm_smart gdbm_release gdbm_examples gdbm_shared gdbm_install gdbm_sourceinstall gdbm_exampleinstall gdbm_distinstall gdbm_zipinstall gdbm_zipsourceinstall gdbm_zipexampleinstall gdbm_zipdistinstall gdbm_clean gdbm_distclean gdbm_cleanall gdbm_info gdbm_makefiles gdbm
|
||||||
endif
|
endif
|
||||||
|
ifdef TARGET_DIRS_NCURSES
|
||||||
|
ncurses_all:
|
||||||
|
$(MAKE) -C ncurses all
|
||||||
|
ncurses_debug:
|
||||||
|
$(MAKE) -C ncurses debug
|
||||||
|
ncurses_smart:
|
||||||
|
$(MAKE) -C ncurses smart
|
||||||
|
ncurses_release:
|
||||||
|
$(MAKE) -C ncurses release
|
||||||
|
ncurses_examples:
|
||||||
|
$(MAKE) -C ncurses examples
|
||||||
|
ncurses_shared:
|
||||||
|
$(MAKE) -C ncurses shared
|
||||||
|
ncurses_install:
|
||||||
|
$(MAKE) -C ncurses install
|
||||||
|
ncurses_sourceinstall:
|
||||||
|
$(MAKE) -C ncurses sourceinstall
|
||||||
|
ncurses_exampleinstall:
|
||||||
|
$(MAKE) -C ncurses exampleinstall
|
||||||
|
ncurses_distinstall:
|
||||||
|
$(MAKE) -C ncurses distinstall
|
||||||
|
ncurses_zipinstall:
|
||||||
|
$(MAKE) -C ncurses zipinstall
|
||||||
|
ncurses_zipsourceinstall:
|
||||||
|
$(MAKE) -C ncurses zipsourceinstall
|
||||||
|
ncurses_zipexampleinstall:
|
||||||
|
$(MAKE) -C ncurses zipexampleinstall
|
||||||
|
ncurses_zipdistinstall:
|
||||||
|
$(MAKE) -C ncurses zipdistinstall
|
||||||
|
ncurses_clean:
|
||||||
|
$(MAKE) -C ncurses clean
|
||||||
|
ncurses_distclean:
|
||||||
|
$(MAKE) -C ncurses distclean
|
||||||
|
ncurses_cleanall:
|
||||||
|
$(MAKE) -C ncurses cleanall
|
||||||
|
ncurses_info:
|
||||||
|
$(MAKE) -C ncurses info
|
||||||
|
ncurses_makefiles:
|
||||||
|
$(MAKE) -C ncurses makefiles
|
||||||
|
ncurses:
|
||||||
|
$(MAKE) -C ncurses all
|
||||||
|
.PHONY: ncurses_all ncurses_debug ncurses_smart ncurses_release ncurses_examples ncurses_shared ncurses_install ncurses_sourceinstall ncurses_exampleinstall ncurses_distinstall ncurses_zipinstall ncurses_zipsourceinstall ncurses_zipexampleinstall ncurses_zipdistinstall ncurses_clean ncurses_distclean ncurses_cleanall ncurses_info ncurses_makefiles ncurses
|
||||||
|
endif
|
||||||
ifdef TARGET_DIRS_MMSYSTEM
|
ifdef TARGET_DIRS_MMSYSTEM
|
||||||
mmsystem_all:
|
mmsystem_all:
|
||||||
$(MAKE) -C mmsystem all
|
$(MAKE) -C mmsystem all
|
||||||
|
@ -7,15 +7,15 @@ dirs=unzip
|
|||||||
dirs_linux=uncgi fpasync \
|
dirs_linux=uncgi fpasync \
|
||||||
x11 opengl gtk syslog \
|
x11 opengl gtk syslog \
|
||||||
forms svgalib ggi libpng libgd \
|
forms svgalib ggi libpng libgd \
|
||||||
utmp cmem bfd zlib gdbm
|
utmp cmem bfd zlib gdbm ncurses
|
||||||
dirs_netbsd=uncgi fpasync \
|
dirs_netbsd=uncgi fpasync \
|
||||||
x11 opengl gtk syslog \
|
x11 opengl gtk syslog \
|
||||||
forms svgalib ggi libpng libgd \
|
forms svgalib ggi libpng libgd \
|
||||||
utmp cmem bfd zlib gdbm
|
utmp cmem bfd zlib gdbm ncurses
|
||||||
dirs_freebsd=uncgi fpasync \
|
dirs_freebsd=uncgi fpasync \
|
||||||
x11 opengl gtk syslog \
|
x11 opengl gtk syslog \
|
||||||
forms svgalib ggi libpng libgd \
|
forms svgalib ggi libpng libgd \
|
||||||
utmp cmem bfd zlib gdbm
|
utmp cmem bfd zlib gdbm ncurses
|
||||||
dirs_win32=uncgi opengl gtk \
|
dirs_win32=uncgi opengl gtk \
|
||||||
zlib mmsystem
|
zlib mmsystem
|
||||||
dirs_os2=uncgi
|
dirs_os2=uncgi
|
||||||
|
Loading…
Reference in New Issue
Block a user