mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 18:01:23 -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
|