mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
* Remove the rpmbuild tree with the dist-clean target. * Move ipa-server-setupssl from /usr/sbin to /usr/share/ipa * Check in requirement change for generated freeipa-python.spec * Fix interactive hostname in ipa-server-install.
-
16 lines
279 B
Makefile
16 lines
279 B
Makefile
SHAREDIR=$(DESTDIR)/usr/share/ipa
|
|
SBINDIR=$(DESTDIR)/usr/sbin
|
|
|
|
all: ;
|
|
|
|
install:
|
|
-mkdir $(SBINDIR)
|
|
install -m 755 ipa-server-install $(SBINDIR)
|
|
install -m 755 ipa-server-setupssl $(SHAREDIR)
|
|
$(MAKE) -C share $@
|
|
$(MAKE) -C test $@
|
|
|
|
clean:
|
|
$(MAKE) -C share $@
|
|
rm -f *~ *.pyc
|