source: server/common/oursrc/accountadm/Makefile.in @ 87

Last change on this file since 87 was 87, checked in by tabbott, 17 years ago
Makefile.in changes to make things more portable. Added install, clean, distclean targets so that one can easily build and install on non-Fedora systems, and removed unecessary targets (those that are already default make rules).
File size: 649 bytes
RevLine 
[1]1CC = @CC@
2CFLAGS = @CFLAGS@
3prefix = @prefix@
[87]4exec_prefix = @exec_prefix@
5sbindir = @sbindir@
6bindir = @bindir@
7sysconfdir = @sysconfdir@
[1]8
9all-local: signup-scripts-frontend
10
[87]11install:
12        install -p -m755 -D modbashrc $(DESTDIR)$(sysconfdir)/modbashrc
13        install -p -m755 -D modbash $(DESTDIR)$(bindir)/modbash
14        install -p -m755 -D admof $(DESTDIR)$(bindir)/admof
15        install -p -m755 -D signup-scripts-frontend $(DESTDIR)$(sbindir)/signup-scripts-frontend
16        install -p -m755 -D signup-scripts-backend $(DESTDIR)$(sbindir)/signup-scripts-backend
[1]17
18clean:
19        rm -f signup-scripts-frontend
[87]20
21distclean: clean
22        rm -f configure config.* Makefile
23        rm -rf auto*.cache
Note: See TracBrowser for help on using the repository browser.