mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-06 22:33:00 -06:00
15 lines
244 B
Makefile
15 lines
244 B
Makefile
SBINDIR=$(DESTDIR)/usr/sbin
|
|
|
|
all: ;
|
|
|
|
install:
|
|
-mkdir $(SBINDIR)
|
|
install -m 755 ipa-server-install $(SBINDIR)
|
|
install -m 755 ipa-server-setupssl $(SBINDIR)
|
|
$(MAKE) -C share $@
|
|
$(MAKE) -C test $@
|
|
|
|
clean:
|
|
$(MAKE) -C share $@
|
|
rm -f *~ *.pyc
|