aboutsummaryrefslogtreecommitdiff
path: root/pci-arbiter/Makefile
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2021-03-09 00:04:56 +1100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2021-03-08 22:17:03 +0100
commitb261eb886e4ee068515484727955e416517a03b4 (patch)
treeedf55004020d488a008e1cd8ab70a94724e89094 /pci-arbiter/Makefile
parenta5fc9f2e767f034830ee5b179123b093180bf259 (diff)
downloadhurd-b261eb886e4ee068515484727955e416517a03b4.tar.gz
hurd-b261eb886e4ee068515484727955e416517a03b4.tar.bz2
hurd-b261eb886e4ee068515484727955e416517a03b4.zip
pci-arbiter: Introduce machdev into this server
* pci-arbiter/Makefile Add machdev lib and simplify * pci-arbiter/main.c (pci_device_{open,close,shutdown}): New methods (netfs_server_func): Thread the demuxer loop (pcifs_startup): Custom startup method (main): Use machdev for server and detach worker threads * pci-arbiter/options.{c,h} Add disk-server-task and priv ports * pci-arbiter/startup-ops.c Delete file Message-Id: <20210308130457.693821-4-damien@zamaudio.com>
Diffstat (limited to 'pci-arbiter/Makefile')
-rw-r--r--pci-arbiter/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/pci-arbiter/Makefile b/pci-arbiter/Makefile
index 1d0309dc..b32bc579 100644
--- a/pci-arbiter/Makefile
+++ b/pci-arbiter/Makefile
@@ -22,11 +22,10 @@ PORTDIR = $(srcdir)/port
SRCS = main.c pci-ops.c netfs_impl.c \
pcifs.c ncache.c options.c func_files.c startup.c \
- startup-ops.c
-MIGSRCS = pciServer.c startup_notifyServer.c
-OBJS = $(patsubst %.S,%.o,$(patsubst %.c,%.o, $(SRCS) $(MIGSRCS)))
+ pciServer.c startup_notifyServer.c
+OBJS = $(SRCS:.c=.o) $(MIGSTUBS)
-HURDLIBS= fshelp ports shouldbeinlibc netfs iohelp ihash
+HURDLIBS= fshelp ports shouldbeinlibc netfs iohelp ihash trivfs machdev
LDLIBS = -lpthread $(libpciaccess_LIBS)
target = pci-arbiter