|
|
# if you're having trouble with the compile. | # if you're having trouble with the compile. |
# | # |
|
prefix = /usr/local |
|
bindir = $(prefix)/bin |
|
datadir = $(prefix)/share |
|
docdir = $(datadir)/ussp-push |
|
DESTDIR = |
|
DOCFILES = doc/README doc/ussp-push.html |
|
|
# | # |
# On most systems glib comes with a helper program used to determine what | # On most systems glib comes with a helper program used to determine what |
|
|
clean: | clean: |
@rm -rf ussp-push *.o *~ | @rm -rf ussp-push *.o *~ |
|
install: |
|
install -d $(DESTDIR)$(bindir) |
|
install -m 755 ussp-push $(DESTDIR)$(bindir) |
|
|
|
install -d $(DESTDIR)$(docdir) |
|
install -m 644 $(DOCFILES) $(DESTDIR)$(docdir) |