root/NEWT0/trunk/contrib/inwt/Makefile.in

Revision 81, 297 bytes (checked in by pguyot, 22 months ago)

New switch for configure to configure contrib packages.
New contrib package: inwt (interactive NEWT/0).

  • Property svn:executable set to *
Line 
1prefix      = @prefix@
2exec_prefix = @exec_prefix@
3bindir      = @bindir@
4NEWT        = $(bindir)/newt
5SCRIPT      = inwt
6
7all:        $(SCRIPT)
8
9edit = sed \
10    -e 's,@NEWT\@,$(NEWT),g'
11
12$(SCRIPT):  $(SCRIPT).nwt
13    $(edit) $(SCRIPT).nwt > $@
14
15install::
16    install -m 755 $(SCRIPT) $(DESTDIR)$(bindir)
17
18clean:
19    rm -f $(SCRIPT)
Note: See TracBrowser for help on using the browser.