12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- # shttpd - build system -- list of dependencies
- # Copyright (C) 2018 Ariadne Devos
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- AUTOMAKE_OPTIONS = subdir-objects foreign no-dist \
- -Wobsolete -Woverride -Wportability -Wunsupported -Werror
- AM_CPPFLAGS = -D_GNU_SOURCE
- bin_PROGRAMS = shttpd
- shtsources = \
- fd/fd.c \
- fd/inet.c \
- generic/bug.c \
- task/accept.c \
- task/perform.c \
- task/sockrw.c \
- task/stream.c \
- worker/alloc.c \
- worker/block-mmap.c \
- worker/deque.c \
- worker/edge-epoll.c \
- worker/loop.c \
- worker/objcache.c \
- worker/schedule.c \
- worker/vector.c
- worker/objcache.c: worker/objcache-bless-table.c
- touch -c $@
- worker/objcache-bless-table.c: tools/gen-vector-variants.sh
- $< size sHT_objcache_bless objcache-bless.c > $@T && mv -T $@T $@
- shttpdsources = \
- http/accept.c \
- http/stream.c
- shttpd_SOURCES = $(shtsources) $(shttpdsources)
|