mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
9648da8f5f
Fix make maintainer-clean Also make RPM naming consistent by using a temp RELEASE file. This one helps when testing builds using rpms. Just 'echo X > RELEASE' to build a new rpms (X, X+1, X+2 ...) Version 1.1.0 was released some times ago, bump up to 1.1.1
25 lines
543 B
Makefile
25 lines
543 B
Makefile
SBINDIR = $(DESTDIR)/usr/sbin
|
|
|
|
|
|
all: ;
|
|
|
|
install:
|
|
install -m 755 ipa-addradiusclient $(SBINDIR)
|
|
install -m 755 ipa-modradiusclient $(SBINDIR)
|
|
install -m 755 ipa-delradiusclient $(SBINDIR)
|
|
install -m 755 ipa-findradiusclient $(SBINDIR)
|
|
install -m 755 ipa-addradiusprofile $(SBINDIR)
|
|
install -m 755 ipa-modradiusprofile $(SBINDIR)
|
|
install -m 755 ipa-delradiusprofile $(SBINDIR)
|
|
install -m 755 ipa-findradiusprofile $(SBINDIR)
|
|
|
|
clean:
|
|
rm -f *~ *.pyc
|
|
|
|
distclean: clean
|
|
rm -f ipa-radius-admintools.spec
|
|
|
|
maintainer-clean: distclean
|
|
|
|
test:
|