mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-10-31 18:57:16 +00:00
Update Makefile
- Respect $DESTDIR - Fix uninstall target
This commit is contained in:
parent
e31e9da667
commit
089d4ac500
21
Makefile
21
Makefile
|
@ -26,18 +26,19 @@ bloat.def.conf:
|
|||
< bloat.conf > bloat.def.conf
|
||||
|
||||
install: bloat
|
||||
mkdir -p $(BINPATH) $(SHAREPATH)/templates $(SHAREPATH)/static
|
||||
cp bloat $(BINPATH)/bloat
|
||||
chmod 0755 $(BINPATH)/bloat
|
||||
cp -r templates/* $(SHAREPATH)/templates
|
||||
chmod 0644 $(SHAREPATH)/templates/*
|
||||
cp -r static/* $(SHAREPATH)/static
|
||||
chmod 0644 $(SHAREPATH)/static/*
|
||||
mkdir -p $(DESTDIR)$(BINPATH) \
|
||||
$(DESTDIR)$(SHAREPATH)/templates \
|
||||
$(DESTDIR)$(SHAREPATH)/static
|
||||
cp bloat $(DESTDIR)$(BINPATH)/bloat
|
||||
chmod 0755 $(DESTDIR)$(BINPATH)/bloat
|
||||
cp -r templates/* $(DESTDIR)$(SHAREPATH)/templates
|
||||
chmod 0644 $(DESTDIR)$(SHAREPATH)/templates/*
|
||||
cp -r static/* $(DESTDIR)$(SHAREPATH)/static
|
||||
chmod 0644 $(DESTDIR)$(SHAREPATH)/static/*
|
||||
|
||||
uninstall:
|
||||
rm -f $(BINPATH)/bloat
|
||||
rm -fr $(SHAREPATH)/templates
|
||||
rm -fr $(SHAREPATH)/static
|
||||
rm -f $(DESTDIR)$(BINPATH)/bloat
|
||||
rm -fr $(DESTDIR)$(SHAREPATH)
|
||||
|
||||
clean:
|
||||
rm -f bloat
|
||||
|
|
Loading…
Reference in a new issue