Changeset 691


Ignore:
Timestamp:
1999-10-15T16:46:02+13:00 (25 years ago)
Author:
cs025
Message:

Fixes for autoconfigure

Location:
trunk/gsdl
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/Makefile.in

    r683 r691  
    6464
    6565clean:
     66    rm -f Makefile config.cache config.h config.log stamp-h
    6667    rm lib/gsdlhome.h
    6768    for subdir in $(INSTALLDIRS) $(OTHERDIRS); do \
     
    7071    done
    7172
     73# For an explanation of the following Makefile rules, see node
     74# `Automatic Remaking' in GNU Autoconf documentation.
     75Makefile: Makefile.in config.status
     76    CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
     77config.status: configure
     78    ./config.status --recheck
     79configure: configure.in aclocal.m4
     80    cd $(srcdir) && autoconf
     81
     82config.h: stamp-h
     83stamp-h: config.h.in config.status
     84    CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
     85config.h.in: stamp-h.in
     86stamp-h.in: configure.in aclocal.m4 acconfig.h
     87    cd $(srcdir) && autoheader
     88    $(TOUCH) $(srcdir)/stamp-h.in
    7289
    7390
     91
  • trunk/gsdl/packages/mg/lib/Makefile.in

    r685 r691  
    120120    $(RANLIB) libmg.a
    121121
    122 $(OBJECTS): ../config.h
     122$(OBJECTS): ../../../config.h
    123123
    124124install:
     
    149149    @echo "rebuilding the deleted files may require special tools."
    150150
    151 Makefile: Makefile.in ../config.status
    152     cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
     151Makefile: Makefile.in ../../../config.status
     152    cd ../../.. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
    153153 
    154154# Tell versions [3.59,3.63) of GNU make not to export all variables.
  • trunk/gsdl/packages/mg/src/images/Makefile.in

    r439 r691  
    209209    done
    210210 
    211 Makefile: Makefile.in ../../config.status
    212     cd ../.. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
     211Makefile: Makefile.in ../../../../config.status
     212    cd ../../../.. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
    213213 
    214214# Tell versions [3.59,3.63) of GNU make not to export all variables.
  • trunk/gsdl/packages/mg/src/scripts/Makefile.in

    r439 r691  
    144144    done
    145145 
    146 Makefile: Makefile.in ../../config.status
    147     cd ../.. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
     146Makefile: Makefile.in ../../../../config.status
     147    cd ../../../.. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
    148148 
    149149# Tell versions [3.59,3.63) of GNU make not to export all variables.
Note: See TracChangeset for help on using the changeset viewer.