89
89
--variable=systemdsystemunitdir)
90
90
TMPFILES:=$(DESTDIR)$(shell $(PKG_CONFIG) systemd \
91
91
--variable=tmpfilesdir)
92
SYSUSERS:=$(DESTDIR)$(shell $(PKG_CONFIG) systemd \
93
--variable=sysusersdir)
93
95
GNUTLS_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I gnutls)
94
96
GNUTLS_LIBS:=$(shell $(PKG_CONFIG) --libs gnutls)
282
287
# Need to add the GnuTLS, Avahi and GPGME libraries
283
plugins.d/mandos-client: plugins.d/mandos-client.c
284
$(LINK.c) $^ $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(strip\
285
) $(GPGME_CFLAGS) $(GNUTLS_LIBS) $(strip\
286
) $(AVAHI_LIBS) $(GPGME_LIBS) $(LOADLIBES) $(strip\
288
plugins.d/mandos-client: CFLAGS += $(GNUTLS_CFLAGS) $(strip \
289
) $(AVAHI_CFLAGS) $(GPGME_CFLAGS)
290
plugins.d/mandos-client: LDLIBS += $(GNUTLS_LIBS) $(strip \
291
) $(AVAHI_LIBS) $(GPGME_LIBS)
289
293
# Need to add the libnl-route library
290
plugin-helpers/mandos-client-iprouteadddel: plugin-helpers/mandos-client-iprouteadddel.c
291
$(LINK.c) $(LIBNL3_CFLAGS) $^ $(LIBNL3_LIBS) $(strip\
292
) $(LOADLIBES) $(LDLIBS) -o $@
294
plugin-helpers/mandos-client-iprouteadddel: CFLAGS += $(LIBNL3_CFLAGS)
295
plugin-helpers/mandos-client-iprouteadddel: LDLIBS += $(LIBNL3_LIBS)
294
297
# Need to add the GLib and pthread libraries
295
dracut-module/password-agent: dracut-module/password-agent.c
296
$(LINK.c) $(GLIB_CFLAGS) $^ $(GLIB_LIBS) -lpthread $(strip\
297
) $(LOADLIBES) $(LDLIBS) -o $@
299
.PHONY : all doc html clean distclean mostlyclean maintainer-clean \
300
check run-client run-server install install-html \
301
install-server install-client-nokey install-client uninstall \
302
uninstall-server uninstall-client purge purge-server \
298
dracut-module/password-agent: CFLAGS += $(GLIB_CFLAGS)
299
dracut-module/password-agent: LDLIBS += $(GLIB_LIBS) -lpthread
306
303
-rm --force $(CPROGS) $(objects) $(htmldocs) $(DOCS) core
309
308
mostlyclean: clean
309
.PHONY: maintainer-clean
310
310
maintainer-clean: clean
311
311
-rm --force --recursive keydir confdir statedir
315
316
./mandos-ctl --check
319
320
./dracut-module/password-agent --test
321
322
# Run the client with a local config and key
322
324
run-client: all keydir/seckey.txt keydir/pubkey.txt \
323
325
keydir/tls-privkey.pem keydir/tls-pubkey.pem
324
326
@echo '######################################################'
354
356
./mandos-keygen --dir keydir --force
356
358
# Run the server with a local config
357
360
run-server: confdir/mandos.conf confdir/clients.conf statedir
358
361
./mandos --debug --no-dbus --configdir=confdir \
359
362
--statedir=statedir $(SERVERARGS)
371
374
install --directory statedir
373
377
install: install-server install-client-nokey
375
380
install-html: html
376
381
install --directory $(htmldir)
377
382
install --mode=u=rw,go=r --target-directory=$(htmldir) \
385
.PHONY: install-server
380
386
install-server: doc
381
387
install --directory $(CONFDIR)
382
388
if install --directory --mode=u=rwx --owner=$(USER) \
390
396
install --mode=u=rw,go=r tmpfiles.d-mandos.conf \
391
397
$(TMPFILES)/mandos.conf; \
399
if [ "$(SYSUSERS)" != "$(DESTDIR)" \
400
-a -d "$(SYSUSERS)" ]; then \
401
install --mode=u=rw,go=r sysusers.d-mandos.conf \
402
$(SYSUSERS)/mandos.conf; \
393
404
install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
394
405
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
424
435
gzip --best --to-stdout intro.8mandos \
425
436
> $(MANDIR)/man8/intro.8mandos.gz
438
.PHONY: install-client-nokey
427
439
install-client-nokey: all doc
428
440
install --directory $(LIBDIR)/mandos $(CONFDIR)
429
441
install --directory --mode=u=rwx $(KEYDIR) \
430
442
$(LIBDIR)/mandos/plugins.d \
431
443
$(LIBDIR)/mandos/plugin-helpers
444
if [ "$(SYSUSERS)" != "$(DESTDIR)" \
445
-a -d "$(SYSUSERS)" ]; then \
446
install --mode=u=rw,go=r sysusers.d-mandos.conf \
447
$(SYSUSERS)/mandos-client.conf; \
432
449
if [ "$(CONFDIR)" != "$(LIBDIR)/mandos" ]; then \
433
450
install --mode=u=rwx \
434
451
--directory "$(CONFDIR)/plugins.d" \
503
520
gzip --best --to-stdout dracut-module/password-agent.8mandos \
504
521
> $(MANDIR)/man8/password-agent.8mandos.gz
523
.PHONY: install-client
506
524
install-client: install-client-nokey
507
525
# Post-installation stuff
508
526
-$(PREFIX)/sbin/mandos-keygen --dir "$(KEYDIR)"