Ignore:
Timestamp:
Jan 20, 2007, 8:53:56 PM (17 years ago)
Author:
tabbott
Message:
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:
1 edited

Legend:

Unmodified
Added
Removed
  • server/common/oursrc/tokensys/Makefile.in

    r36 r87  
    1 CC = @CC@
    2 CFLAGS = @CFLAGS@
    31prefix = @prefix@
     2exec_prefix = @exec_prefix@
     3libdir = @libdir@
     4
     5all:
     6
     7install:
     8        mkdir -p $(DESTDIR)$(libdir)
     9        install -m a=rx,u+w -p renew $(DESTDIR)$(libdir)/
     10
     11clean:
     12        rm -f renew
     13
     14distclean: clean
     15        rm -f configure config.* Makefile
     16        rm -rf auto*.cache
Note: See TracChangeset for help on using the changeset viewer.