1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
.PHONY: default all install depend clean dclean targetclean
default: all
all:
install_man:
depend:
clean:
dclean:
targetclean:
top_srcdir = @top_srcdir@
prefix = @prefix@
srcdir = @srcdir@
incdir = @includedir@
VPATH = @srcdir@
top_objdir = ..
MKDIRS = @MKDIRS@
INSTALL = @INSTALL@
INSTALL_INCLUDE = @INSTALL_INCLUDE@
HEADERS = psiconfig.h psitypes.h ccfiles.h masses.h physconst.h psifiles.h symmetry.h rgb.h vdw_radii.h chkpt_params.h
install: install_inc
install_inc: $(HEADERS)
$(MKDIRS) $(DESTDIR)$(incdir)
$(INSTALL_INCLUDE) $^ $(DESTDIR)$(incdir)
$(top_srcdir)/configure: $(top_srcdir)/configure.ac $(top_srcdir)/aclocal.m4
cd $(top_srcdir) && autoconf
$(top_objdir)/config.status: $(top_srcdir)/configure
cd $(top_objdir) && ./config.status --recheck
Makefile: $(srcdir)/Makefile.in $(top_objdir)/config.status
cd $(top_objdir) && CONFIG_FILES=include/Makefile ./config.status
|