mirror of
https://github.com/darlinghq/darling-libkqueue.git
synced 2024-11-23 11:49:50 +00:00
Add the generated Makefile and configure script. This eliminates the requirement for having Makeconf and it's dependencies when building on certain platforms (Linux, at least).
git-svn-id: svn://svn.code.sf.net/p/libkqueue/code/trunk@614 fb4e3144-bc1c-4b72-a658-5bcd248dd7f7
This commit is contained in:
parent
c16e255e6b
commit
1d144326de
259
GNUmakefile
Normal file
259
GNUmakefile
Normal file
@ -0,0 +1,259 @@
|
||||
# AUTOMATICALLY GENERATED -- DO NOT EDIT
|
||||
BINDIR = $(EPREFIX)/bin
|
||||
CC = cc
|
||||
DATADIR = $(DATAROOTDIR)
|
||||
DATAROOTDIR = $(PREFIX)/share
|
||||
DOCDIR = $(DATAROOTDIR)/doc/$(PACKAGE)
|
||||
EPREFIX = $(PREFIX)
|
||||
INCLUDEDIR = $(PREFIX)/include
|
||||
INFODIR = $(DATAROOTDIR)/info
|
||||
INSTALL ?= /usr/bin/install
|
||||
LD = cc
|
||||
LIBDIR = $(EPREFIX)/lib
|
||||
LIBEXECDIR = $(EPREFIX)/libexec
|
||||
LOCALEDIR = $(DATAROOTDIR)/locale
|
||||
LOCALSTATEDIR = $(PREFIX)/var
|
||||
MANDIR = $(DATAROOTDIR)/man
|
||||
OLDINCLUDEDIR = /usr/include
|
||||
PKGDATADIR = $(DATADIR)/$(PACKAGE)
|
||||
PKGINCLUDEDIR = $(INCLUDEDIR)/$(PACKAGE)
|
||||
PKGLIBDIR = $(LIBDIR)/$(PACKAGE)
|
||||
PREFIX = /usr/local
|
||||
SBINDIR = $(EPREFIX)/sbin
|
||||
SHAREDSTATEDIR = $(PREFIX)/com
|
||||
SYSCONFDIR = $(PREFIX)/etc
|
||||
|
||||
|
||||
#
|
||||
# Detect the canonical system type of the system we are building on
|
||||
# (build) and the system the package runs on (host)
|
||||
#
|
||||
BUILD_CPU=$(shell uname -m)
|
||||
HOST_CPU=$(BUILD_CPU)
|
||||
BUILD_VENDOR=unknown
|
||||
HOST_VENDOR=$(BUILD_VENDOR)
|
||||
BUILD_KERNEL=$(shell uname | tr '[A-Z]' '[a-z]')
|
||||
HOST_KERNEL=$(BUILD_KERNEL)
|
||||
BUILD_SYSTEM=gnu
|
||||
HOST_SYSTEM=$(BUILD_SYSTEM)
|
||||
BUILD_TYPE=$(BUILD_CPU)-$(BUILD_VENDOR)-$(BUILD_KERNEL)-$(BUILD_SYSTEM)
|
||||
HOST_TYPE=$(HOST_CPU)-$(HOST_VENDOR)-$(HOST_KERNEL)-$(HOST_SYSTEM)
|
||||
|
||||
# Allow variables to be overridden via a ./configure script that outputs config.mk
|
||||
# FIXME -- requires GNU Make
|
||||
-include config.mk
|
||||
|
||||
default: all
|
||||
|
||||
all: libkqueue.so libkqueue.a kqtest
|
||||
|
||||
check: kqtest
|
||||
./kqtest
|
||||
|
||||
clean:
|
||||
rm -f *.rpm
|
||||
rm -f libkqueue-2.0.tar.gz
|
||||
rm -f src/common/filter.o
|
||||
rm -f src/common/knote.o
|
||||
rm -f src/common/map.o
|
||||
rm -f src/common/kevent.o
|
||||
rm -f src/common/kqueue.o
|
||||
rm -f src/posix/platform.o
|
||||
rm -f src/linux/platform.o
|
||||
rm -f src/linux/read.o
|
||||
rm -f src/linux/write.o
|
||||
rm -f src/linux/user.o
|
||||
rm -f src/linux/vnode.o
|
||||
rm -f src/linux/signal.o
|
||||
rm -f src/linux/timer.o
|
||||
rm -f libkqueue.so
|
||||
rm -f libkqueue.a
|
||||
rm -f test/main.o
|
||||
rm -f test/kevent.o
|
||||
rm -f test/test.o
|
||||
rm -f test/proc.o
|
||||
rm -f test/read.o
|
||||
rm -f test/signal.o
|
||||
rm -f test/timer.o
|
||||
rm -f test/vnode.o
|
||||
rm -f test/user.o
|
||||
rm -f kqtest
|
||||
|
||||
config.h:
|
||||
@echo "checking build system type... $(BUILD_TYPE)"
|
||||
@echo "checking host system type... $(HOST_TYPE)"
|
||||
@echo "/* AUTOMATICALLY GENERATED -- DO NOT EDIT */" > config.h.tmp
|
||||
@date > config.log
|
||||
@printf "checking whether EPOLLRDHUP is declared in sys/epoll.h... " | tee -a config.log
|
||||
@( printf '#define _GNU_SOURCE\n#include <sys/epoll.h>\nint main() { EPOLLRDHUP; }' | $(CC) $(CFLAGS) -E -x c - ) >/dev/null 2>>config.log && ( echo '#define HAVE_DECL_EPOLLRDHUP 1' >> config.h.tmp ; echo 'yes' ) || (echo '#define HAVE_DECL_EPOLLRDHUP 0' >> config.h.tmp ; echo 'no' )
|
||||
@printf "checking whether ppoll is declared in poll.h... " | tee -a config.log
|
||||
@( printf '#define _GNU_SOURCE\n#include <poll.h>\nint main() { ppoll; }' | $(CC) $(CFLAGS) -E -x c - ) >/dev/null 2>>config.log && ( echo '#define HAVE_DECL_PPOLL 1' >> config.h.tmp ; echo 'yes' ) || (echo '#define HAVE_DECL_PPOLL 0' >> config.h.tmp ; echo 'no' )
|
||||
@printf "checking for sys/epoll.h... "
|
||||
@( echo '#include <sys/epoll.h>' | $(CC) $(CFLAGS) -E -x c - ) >/dev/null 2>&1 && ( echo '#define HAVE_SYS_EPOLL_H 1' >> config.h.tmp ; echo 'yes' ) || (echo '/* #undef HAVE_SYS_EPOLL_H */' >> config.h.tmp ; echo 'no' )
|
||||
@printf "checking for sys/event.h... "
|
||||
@( echo '#include <sys/event.h>' | $(CC) $(CFLAGS) -E -x c - ) >/dev/null 2>&1 && ( echo '#define HAVE_SYS_EVENT_H 1' >> config.h.tmp ; echo 'yes' ) || (echo '/* #undef HAVE_SYS_EVENT_H */' >> config.h.tmp ; echo 'no' )
|
||||
@printf "checking for sys/eventfd.h... "
|
||||
@( echo '#include <sys/eventfd.h>' | $(CC) $(CFLAGS) -E -x c - ) >/dev/null 2>&1 && ( echo '#define HAVE_SYS_EVENTFD_H 1' >> config.h.tmp ; echo 'yes' ) || (echo '/* #undef HAVE_SYS_EVENTFD_H */' >> config.h.tmp ; echo 'no' )
|
||||
@printf "checking for sys/inotify.h... "
|
||||
@( echo '#include <sys/inotify.h>' | $(CC) $(CFLAGS) -E -x c - ) >/dev/null 2>&1 && ( echo '#define HAVE_SYS_INOTIFY_H 1' >> config.h.tmp ; echo 'yes' ) || (echo '/* #undef HAVE_SYS_INOTIFY_H */' >> config.h.tmp ; echo 'no' )
|
||||
@printf "checking for sys/signalfd.h... "
|
||||
@( echo '#include <sys/signalfd.h>' | $(CC) $(CFLAGS) -E -x c - ) >/dev/null 2>&1 && ( echo '#define HAVE_SYS_SIGNALFD_H 1' >> config.h.tmp ; echo 'yes' ) || (echo '/* #undef HAVE_SYS_SIGNALFD_H */' >> config.h.tmp ; echo 'no' )
|
||||
@printf "checking for sys/timerfd.h... "
|
||||
@( echo '#include <sys/timerfd.h>' | $(CC) $(CFLAGS) -E -x c - ) >/dev/null 2>&1 && ( echo '#define HAVE_SYS_TIMERFD_H 1' >> config.h.tmp ; echo 'yes' ) || (echo '/* #undef HAVE_SYS_TIMERFD_H */' >> config.h.tmp ; echo 'no' )
|
||||
@rm -f conftest.c conftest.o
|
||||
@echo "creating config.h"
|
||||
@mv config.h.tmp config.h
|
||||
|
||||
dist: libkqueue-2.0.tar.gz
|
||||
|
||||
distclean: clean
|
||||
rm -f GNUmakefile
|
||||
rm -f libkqueue-2.0.tar.gz
|
||||
rm -f config.h
|
||||
rm -f config.yaml
|
||||
rm -f rpm.spec
|
||||
|
||||
distdir:
|
||||
umask 22 ; mkdir -p '$(distdir)/src/common'
|
||||
umask 22 ; mkdir -p '$(distdir)/src/common/../posix'
|
||||
umask 22 ; mkdir -p '$(distdir)/src/common/../posix/../../include/sys'
|
||||
umask 22 ; mkdir -p '$(distdir)/src/common/../linux'
|
||||
umask 22 ; mkdir -p '$(distdir)/src/posix'
|
||||
umask 22 ; mkdir -p '$(distdir)/src/posix/../common'
|
||||
umask 22 ; mkdir -p '$(distdir)/src/posix/../common/../posix'
|
||||
umask 22 ; mkdir -p '$(distdir)/src/posix/../common/../posix/../../include/sys'
|
||||
umask 22 ; mkdir -p '$(distdir)/src/posix/../common/../linux'
|
||||
umask 22 ; mkdir -p '$(distdir)/src/linux'
|
||||
umask 22 ; mkdir -p '$(distdir)/src/linux/../common'
|
||||
umask 22 ; mkdir -p '$(distdir)/src/linux/../common/../posix'
|
||||
umask 22 ; mkdir -p '$(distdir)/src/linux/../common/../posix/../../include/sys'
|
||||
umask 22 ; mkdir -p '$(distdir)/src/linux/../common/../linux'
|
||||
umask 22 ; mkdir -p '$(distdir)/include/sys'
|
||||
umask 22 ; mkdir -p '$(distdir)/test'
|
||||
umask 22 ; mkdir -p '$(distdir)/test/..'
|
||||
cp -RL src/common/filter.c src/common/private.h src/common/tree.h src/common/debug.h src/common/knote.c src/common/alloc.h src/common/map.c src/common/kevent.c src/common/kqueue.c $(distdir)/src/common
|
||||
cp -RL config.h GNUmakefile configure configure.rb $(distdir)
|
||||
cp -RL src/common/../posix/platform.h $(distdir)/src/common/../posix
|
||||
cp -RL src/common/../posix/../../include/sys/event.h $(distdir)/src/common/../posix/../../include/sys
|
||||
cp -RL src/common/../linux/platform.h $(distdir)/src/common/../linux
|
||||
cp -RL src/posix/platform.c $(distdir)/src/posix
|
||||
cp -RL src/posix/../common/private.h src/posix/../common/tree.h src/posix/../common/debug.h $(distdir)/src/posix/../common
|
||||
cp -RL src/posix/../common/../posix/platform.h $(distdir)/src/posix/../common/../posix
|
||||
cp -RL src/posix/../common/../posix/../../include/sys/event.h $(distdir)/src/posix/../common/../posix/../../include/sys
|
||||
cp -RL src/posix/../common/../linux/platform.h $(distdir)/src/posix/../common/../linux
|
||||
cp -RL src/linux/platform.c src/linux/read.c src/linux/write.c src/linux/user.c src/linux/vnode.c src/linux/signal.c src/linux/timer.c $(distdir)/src/linux
|
||||
cp -RL src/linux/../common/private.h src/linux/../common/tree.h src/linux/../common/debug.h $(distdir)/src/linux/../common
|
||||
cp -RL src/linux/../common/../posix/platform.h $(distdir)/src/linux/../common/../posix
|
||||
cp -RL src/linux/../common/../posix/../../include/sys/event.h $(distdir)/src/linux/../common/../posix/../../include/sys
|
||||
cp -RL src/linux/../common/../linux/platform.h $(distdir)/src/linux/../common/../linux
|
||||
cp -RL include/sys/event.h $(distdir)/include/sys
|
||||
cp -RL test/main.c test/common.h test/kevent.c test/test.c test/proc.c test/read.c test/signal.c test/timer.c test/vnode.c test/user.c $(distdir)/test
|
||||
cp -RL test/../config.h $(distdir)/test/..
|
||||
|
||||
install:
|
||||
/usr/bin/test -e $(DESTDIR)$(LIBDIR) || $(INSTALL) -d -m 755 $(DESTDIR)$(LIBDIR)
|
||||
$(INSTALL) -m 0644 libkqueue.so $(DESTDIR)$(LIBDIR)/libkqueue.so.0.0
|
||||
/usr/bin/test -e $(DESTDIR)$(INCLUDEDIR)/kqueue/sys || $(INSTALL) -d -m 755 $(DESTDIR)$(INCLUDEDIR)/kqueue/sys
|
||||
$(INSTALL) -m 644 include/sys/event.h $(DESTDIR)$(INCLUDEDIR)/kqueue/sys
|
||||
|
||||
kqtest: test/main.o test/kevent.o test/test.o test/proc.o test/read.o test/signal.o test/timer.o test/vnode.o test/user.o
|
||||
$(LD) -o kqtest -L . -Wl,-rpath,. -L . $(LDFLAGS) test/main.o test/kevent.o test/test.o test/proc.o test/read.o test/signal.o test/timer.o test/vnode.o test/user.o -lpthread -lrt -lkqueue $(LDADD)
|
||||
|
||||
libkqueue-2.0.tar.gz:
|
||||
rm -rf libkqueue-2.0
|
||||
mkdir libkqueue-2.0
|
||||
$(MAKE) distdir distdir=libkqueue-2.0
|
||||
rm -rf libkqueue-2.0.tar libkqueue-2.0.tar.gz
|
||||
tar cf libkqueue-2.0.tar libkqueue-2.0
|
||||
gzip libkqueue-2.0.tar
|
||||
rm -rf libkqueue-2.0
|
||||
|
||||
libkqueue.a: src/common/filter.o src/common/knote.o src/common/map.o src/common/kevent.o src/common/kqueue.o src/posix/platform.o src/linux/platform.o src/linux/read.o src/linux/write.o src/linux/user.o src/linux/vnode.o src/linux/signal.o src/linux/timer.o
|
||||
ifneq ($(DISABLE_STATIC),1)
|
||||
ar cru libkqueue.a src/common/filter.o src/common/knote.o src/common/map.o src/common/kevent.o src/common/kqueue.o src/posix/platform.o src/linux/platform.o src/linux/read.o src/linux/write.o src/linux/user.o src/linux/vnode.o src/linux/signal.o src/linux/timer.o
|
||||
ranlib libkqueue.a
|
||||
endif
|
||||
|
||||
libkqueue.so: src/common/filter.o src/common/knote.o src/common/map.o src/common/kevent.o src/common/kqueue.o src/posix/platform.o src/linux/platform.o src/linux/read.o src/linux/write.o src/linux/user.o src/linux/vnode.o src/linux/signal.o src/linux/timer.o
|
||||
$(LD) -o libkqueue.so -shared -fPIC -L . $(LDFLAGS) src/common/filter.o src/common/knote.o src/common/map.o src/common/kevent.o src/common/kqueue.o src/posix/platform.o src/linux/platform.o src/linux/read.o src/linux/write.o src/linux/user.o src/linux/vnode.o src/linux/signal.o src/linux/timer.o -lpthread -lrt $(LDADD)
|
||||
|
||||
package: clean libkqueue-2.0.tar.gz
|
||||
rm -rf rpm *.rpm
|
||||
mkdir -p rpm/BUILD rpm/RPMS rpm/SOURCES rpm/SPECS rpm/SRPMS
|
||||
mkdir -p rpm/RPMS/i386 rpm/RPMS/x86_64
|
||||
cp libkqueue-2.0.tar.gz rpm/SOURCES
|
||||
rpmbuild --define "_topdir `pwd`/rpm" -bs rpm.spec
|
||||
cp rpm.spec rpm/SPECS/rpm.spec
|
||||
rpmbuild --define "_topdir `pwd`/rpm" -bb ./rpm/SPECS/rpm.spec
|
||||
mv ./rpm/SRPMS/* ./rpm/RPMS/*/*.rpm .
|
||||
rm -rf rpm
|
||||
|
||||
src/common/filter.o: src/common/filter.c src/common/private.h config.h src/common/tree.h src/common/../posix/platform.h src/common/../posix/../../include/sys/event.h src/common/../linux/platform.h src/common/debug.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -I./src/common -I./include -Wall -Wextra -Wno-missing-field-initializers -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600 -fvisibility=hidden -o src/common/filter.o -fPIC -DPIC $(CFLAGS) -c src/common/filter.c
|
||||
|
||||
src/common/kevent.o: src/common/kevent.c src/common/private.h config.h src/common/tree.h src/common/../posix/platform.h src/common/../posix/../../include/sys/event.h src/common/../linux/platform.h src/common/debug.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -I./src/common -I./include -Wall -Wextra -Wno-missing-field-initializers -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600 -fvisibility=hidden -o src/common/kevent.o -fPIC -DPIC $(CFLAGS) -c src/common/kevent.c
|
||||
|
||||
src/common/knote.o: src/common/knote.c src/common/private.h config.h src/common/tree.h src/common/../posix/platform.h src/common/../posix/../../include/sys/event.h src/common/../linux/platform.h src/common/debug.h src/common/alloc.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -I./src/common -I./include -Wall -Wextra -Wno-missing-field-initializers -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600 -fvisibility=hidden -o src/common/knote.o -fPIC -DPIC $(CFLAGS) -c src/common/knote.c
|
||||
|
||||
src/common/kqueue.o: src/common/kqueue.c src/common/private.h config.h src/common/tree.h src/common/../posix/platform.h src/common/../posix/../../include/sys/event.h src/common/../linux/platform.h src/common/debug.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -I./src/common -I./include -Wall -Wextra -Wno-missing-field-initializers -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600 -fvisibility=hidden -o src/common/kqueue.o -fPIC -DPIC $(CFLAGS) -c src/common/kqueue.c
|
||||
|
||||
src/common/map.o: src/common/map.c src/common/private.h config.h src/common/tree.h src/common/../posix/platform.h src/common/../posix/../../include/sys/event.h src/common/../linux/platform.h src/common/debug.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -I./src/common -I./include -Wall -Wextra -Wno-missing-field-initializers -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600 -fvisibility=hidden -o src/common/map.o -fPIC -DPIC $(CFLAGS) -c src/common/map.c
|
||||
|
||||
src/linux/platform.o: src/linux/platform.c src/linux/../common/private.h config.h src/linux/../common/tree.h src/linux/../common/../posix/platform.h src/linux/../common/../posix/../../include/sys/event.h src/linux/../common/../linux/platform.h src/linux/../common/debug.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -I./src/common -I./include -Wall -Wextra -Wno-missing-field-initializers -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600 -fvisibility=hidden -o src/linux/platform.o -fPIC -DPIC $(CFLAGS) -c src/linux/platform.c
|
||||
|
||||
src/linux/read.o: src/linux/read.c src/common/private.h config.h src/common/tree.h src/common/../posix/platform.h src/common/../posix/../../include/sys/event.h src/common/../linux/platform.h src/common/debug.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -I./src/common -I./include -Wall -Wextra -Wno-missing-field-initializers -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600 -fvisibility=hidden -o src/linux/read.o -fPIC -DPIC $(CFLAGS) -c src/linux/read.c
|
||||
|
||||
src/linux/signal.o: src/linux/signal.c src/common/private.h config.h src/common/tree.h src/common/../posix/platform.h src/common/../posix/../../include/sys/event.h src/common/../linux/platform.h src/common/debug.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -I./src/common -I./include -Wall -Wextra -Wno-missing-field-initializers -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600 -fvisibility=hidden -o src/linux/signal.o -fPIC -DPIC $(CFLAGS) -c src/linux/signal.c
|
||||
|
||||
src/linux/timer.o: src/linux/timer.c src/common/private.h config.h src/common/tree.h src/common/../posix/platform.h src/common/../posix/../../include/sys/event.h src/common/../linux/platform.h src/common/debug.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -I./src/common -I./include -Wall -Wextra -Wno-missing-field-initializers -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600 -fvisibility=hidden -o src/linux/timer.o -fPIC -DPIC $(CFLAGS) -c src/linux/timer.c
|
||||
|
||||
src/linux/user.o: src/linux/user.c include/sys/event.h src/common/private.h config.h src/common/tree.h src/common/../posix/platform.h src/common/../posix/../../include/sys/event.h src/common/../linux/platform.h src/common/debug.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -I./src/common -I./include -Wall -Wextra -Wno-missing-field-initializers -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600 -fvisibility=hidden -o src/linux/user.o -fPIC -DPIC $(CFLAGS) -c src/linux/user.c
|
||||
|
||||
src/linux/vnode.o: src/linux/vnode.c src/common/private.h config.h src/common/tree.h src/common/../posix/platform.h src/common/../posix/../../include/sys/event.h src/common/../linux/platform.h src/common/debug.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -I./src/common -I./include -Wall -Wextra -Wno-missing-field-initializers -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600 -fvisibility=hidden -o src/linux/vnode.o -fPIC -DPIC $(CFLAGS) -c src/linux/vnode.c
|
||||
|
||||
src/linux/write.o: src/linux/write.c src/common/private.h config.h src/common/tree.h src/common/../posix/platform.h src/common/../posix/../../include/sys/event.h src/common/../linux/platform.h src/common/debug.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -I./src/common -I./include -Wall -Wextra -Wno-missing-field-initializers -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600 -fvisibility=hidden -o src/linux/write.o -fPIC -DPIC $(CFLAGS) -c src/linux/write.c
|
||||
|
||||
src/posix/platform.o: src/posix/platform.c src/posix/../common/private.h config.h src/posix/../common/tree.h src/posix/../common/../posix/platform.h src/posix/../common/../posix/../../include/sys/event.h src/posix/../common/../linux/platform.h src/posix/../common/debug.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -I./src/common -I./include -Wall -Wextra -Wno-missing-field-initializers -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600 -fvisibility=hidden -o src/posix/platform.o -fPIC -DPIC $(CFLAGS) -c src/posix/platform.c
|
||||
|
||||
test/kevent.o: test/kevent.c test/common.h include/sys/event.h test/../config.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -g -O0 -Wall -Werror -I./include -I./test -g -O0 -o test/kevent.o $(CFLAGS) -c test/kevent.c
|
||||
|
||||
test/main.o: test/main.c test/common.h include/sys/event.h test/../config.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -g -O0 -Wall -Werror -I./include -I./test -g -O0 -o test/main.o $(CFLAGS) -c test/main.c
|
||||
|
||||
test/proc.o: test/proc.c test/common.h include/sys/event.h test/../config.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -g -O0 -Wall -Werror -I./include -I./test -g -O0 -o test/proc.o $(CFLAGS) -c test/proc.c
|
||||
|
||||
test/read.o: test/read.c test/common.h include/sys/event.h test/../config.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -g -O0 -Wall -Werror -I./include -I./test -g -O0 -o test/read.o $(CFLAGS) -c test/read.c
|
||||
|
||||
test/signal.o: test/signal.c test/common.h include/sys/event.h test/../config.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -g -O0 -Wall -Werror -I./include -I./test -g -O0 -o test/signal.o $(CFLAGS) -c test/signal.c
|
||||
|
||||
test/test.o: test/test.c test/common.h include/sys/event.h test/../config.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -g -O0 -Wall -Werror -I./include -I./test -g -O0 -o test/test.o $(CFLAGS) -c test/test.c
|
||||
|
||||
test/timer.o: test/timer.c test/common.h include/sys/event.h test/../config.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -g -O0 -Wall -Werror -I./include -I./test -g -O0 -o test/timer.o $(CFLAGS) -c test/timer.c
|
||||
|
||||
test/user.o: test/user.c test/common.h include/sys/event.h test/../config.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -g -O0 -Wall -Werror -I./include -I./test -g -O0 -o test/user.o $(CFLAGS) -c test/user.c
|
||||
|
||||
test/vnode.o: test/vnode.c test/common.h include/sys/event.h test/../config.h GNUmakefile
|
||||
$(CC) -DHAVE_CONFIG_H -I. -g -O0 -Wall -Werror -I./include -I./test -g -O0 -o test/vnode.o $(CFLAGS) -c test/vnode.c
|
||||
|
||||
uninstall:
|
||||
rm -f $(DESTDIR)$(LIBDIR)/libkqueue.so
|
||||
rm -f $(DESTDIR)$(INCLUDEDIR)/kqueue/sys/include/sys/event.h
|
119
configure
vendored
119
configure
vendored
@ -1,46 +1,91 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Bootstrap configuration script for Makeconf
|
||||
# Copyright (c) 2013 Mark Heily <mark@heily.com>
|
||||
#
|
||||
# Author: Mark Heily <mark@heily.com>
|
||||
# Permission to use, copy, modify, and distribute this software for any
|
||||
# purpose with or without fee is hereby granted, provided that the above
|
||||
# copyright notice and this permission notice appear in all copies.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
#
|
||||
|
||||
usage() {
|
||||
cat << "EOF"
|
||||
Usage: configure [options]
|
||||
|
||||
die() {
|
||||
printf "\n*** ERROR: $1 ***\n\n$2\n\n"
|
||||
exit 1
|
||||
Installation options:
|
||||
--bindir [DIRECTORY] TODO describe this [$(EPREFIX)/bin]
|
||||
--datadir [DIRECTORY] TODO describe this [$(DATAROOTDIR)]
|
||||
--datarootdir [DIRECTORY] TODO describe this [$(PREFIX)/share]
|
||||
--docdir [DIRECTORY] TODO describe this [$(DATAROOTDIR)/doc/$(PACKAGE)]
|
||||
--eprefix [DIRECTORY] TODO describe this [$(PREFIX)]
|
||||
--includedir [DIRECTORY] TODO describe this [$(PREFIX)/include]
|
||||
--infodir [DIRECTORY] TODO describe this [$(DATAROOTDIR)/info]
|
||||
--libdir [DIRECTORY] TODO describe this [$(EPREFIX)/lib]
|
||||
--libexecdir [DIRECTORY] TODO describe this [$(EPREFIX)/libexec]
|
||||
--localedir [DIRECTORY] TODO describe this [$(DATAROOTDIR)/locale]
|
||||
--localstatedir [DIRECTORY] TODO describe this [$(PREFIX)/var]
|
||||
--mandir [DIRECTORY] TODO describe this [$(DATAROOTDIR)/man]
|
||||
--oldincludedir [DIRECTORY] TODO describe this [/usr/include]
|
||||
--pkgdatadir [DIRECTORY] TODO describe this [$(DATADIR)/$(PACKAGE)]
|
||||
--pkgincludedir [DIRECTORY] TODO describe this [$(INCLUDEDIR)/$(PACKAGE)]
|
||||
--pkglibdir [DIRECTORY] TODO describe this [$(LIBDIR)/$(PACKAGE)]
|
||||
--prefix [DIRECTORY] TODO describe this [/usr/local]
|
||||
--sbindir [DIRECTORY] TODO describe this [$(EPREFIX)/sbin]
|
||||
--sharedstatedir [DIRECTORY] TODO describe this [$(PREFIX)/com]
|
||||
--sysconfdir [DIRECTORY] TODO describe this [$(PREFIX)/etc]
|
||||
|
||||
Project options:
|
||||
|
||||
System types:
|
||||
--build BUILD set the system type for building
|
||||
--host HOST cross-compile programs to run on a different system type
|
||||
--target TARGET build a compiler for cross-compiling
|
||||
|
||||
Optional Features:
|
||||
|
||||
Common options:
|
||||
--disable-static Disable generation of static libraries
|
||||
--disable-option-checking
|
||||
-h, --help Show this message
|
||||
-V, --version Display version information and exit
|
||||
EOF
|
||||
}
|
||||
|
||||
if [ "$RUBY" != "" ] ; then
|
||||
ruby=$RUBY
|
||||
else
|
||||
ruby=`which ruby`
|
||||
fi
|
||||
|
||||
printf 'checking for ruby.. '
|
||||
if [ ! -x "$ruby" ] ; then
|
||||
echo 'no'
|
||||
die 'Ruby was not found' 'Please install Ruby from http://www.ruby-lang.org/'
|
||||
fi
|
||||
|
||||
if [ "$RUBYLIB" != "" ] ; then
|
||||
echo "$ruby (RUBYLIB=$RUBYLIB)"
|
||||
export RUBYLIB
|
||||
else
|
||||
echo $ruby
|
||||
fi
|
||||
|
||||
printf 'checking for makeconf.. '
|
||||
ruby -e "require 'makeconf'" > /dev/null 2>&1
|
||||
if [ $? -ne 0 ] ; then
|
||||
if [ -x ./makeconf ] ; then
|
||||
echo 'yes (using local copy)'
|
||||
ruby="$ruby -I./makeconf"
|
||||
else
|
||||
echo 'no'
|
||||
die 'Makeconf was not found' 'Please install Makeconf from https://rubygems.org/'
|
||||
echo "# Automatically generated by ./configure -- do not edit" > config.mk
|
||||
for arg in $*
|
||||
do
|
||||
if [ `echo "$arg" | grep "^--"` = "$arg" ] ; then
|
||||
key=`echo $arg | sed "s/^--//; s/=.*//"`
|
||||
val=`echo $arg | sed "s/.*=//"`
|
||||
uc_key=`echo "$key" | tr "a-z" "A-Z" | tr "-" "_"`
|
||||
echo key=$key -- val=$val
|
||||
case $key in
|
||||
"help")
|
||||
usage
|
||||
exit 1
|
||||
;;
|
||||
bindir|datadir|datarootdir|docdir|eprefix|includedir|infodir|libdir|libexecdir|localedir|localstatedir|mandir|pkgdatadir|pkgincludedir|pkglibdir|prefix|sbindir|sharedstatedir|sysconfdir)
|
||||
echo "$uc_key=$val" >> config.mk
|
||||
;;
|
||||
disable-static)
|
||||
echo "$uc_key=1" >> config.mk
|
||||
;;
|
||||
disable-option-checking)
|
||||
# Not implemented, this behavior is the default (for now)
|
||||
;;
|
||||
*)
|
||||
echo "Warning: unrecognized option: $arg"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
else
|
||||
echo 'yes'
|
||||
fi
|
||||
done
|
||||
|
||||
exec $ruby ./configure.rb $*
|
||||
rm -f config.h
|
||||
make config.h
|
||||
|
0
configure.rb
Normal file → Executable file
0
configure.rb
Normal file → Executable file
Loading…
Reference in New Issue
Block a user