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/execsys/Makefile.in

    r36 r87  
    11CC = @CC@
    22CFLAGS = @CFLAGS@
     3prefix = @prefix@
     4exec_prefix = @exec_prefix@
     5libexecdir = @libexecdir@
     6sysconfdir = @sysconfdir@
     7APACHEDIR = /etc/httpd
     8SYSCATPATH = /usr/local/sbin
    39
    4 all-local: staticsys-cat update
     10all-local: staticsys-cat execsys-binfmt
    511
    6 staticsys-cat: update
    7         $(CC) $(CFLAGS) -o $@ staticsys-cat.c
     12staticsys-cat.c execsys-binfmt: staticsys-cat.c.pre execsys-binfmt.pre
     13        @UPD_VARS@ syscat_path=$(SYSCATPATH) perl upd-execsys
    814
    9 update:
    10         @UPD_VARS@ perl upd-execsys
     15install: all-local
     16        install -D -p -m644 execsys.conf $(DESTDIR)$(APACHEDIR)/conf.d/execsys.conf
     17        install -D -p -m755 execsys-binfmt $(DESTDIR)$(sysconfdir)/init.d/execsys-binfmt
     18        install -D -p -m755 staticsys-cat $(DESTDIR)$(SYSCATPATH)/staticsys-cat
    1119
    1220clean:
    1321        rm -f staticsys-cat
     22
     23distclean: clean
     24        rm -f configure config.* Makefile
     25        rm -rf auto*.cache
Note: See TracChangeset for help on using the changeset viewer.