31 lines
1023 B
Makefile
31 lines
1023 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = @XGRAPHDIR@ src man tests
|
|
DIST_SUBDIRS = @XGRAPHDIR@ src man tests
|
|
|
|
EXTRA_DIST = FAQ autogen.sh Stuarts_Poly_Notes \
|
|
ANALYSES BUGS AUTHORS ChangeLog \
|
|
DEVICES NEWS README README.tcl \
|
|
README.adms contrib \
|
|
doc examples m4 visualc @NOTXGRAPH@ \
|
|
xgraph/aclocal.m4 \
|
|
compile_min.sh .gitignore
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 ar-lib compile config.guess \
|
|
src/include/ngspice/config.h.in config.sub configure install-sh \
|
|
missing mkinstalldirs stamp-h.in ltconfig \
|
|
ltmain.sh depcomp ylwrap
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
dist-hook:
|
|
rm -rf `find $(distdir)/xgraph -name .deps`
|
|
rm -rf `find $(distdir)/xgraph -name config.status`
|
|
rm -rf `find $(distdir)/xgraph -name config.log`
|
|
rm -rf `find $(distdir)/xgraph -name Makefile`
|
|
|
|
mrproper: maintainer-clean
|
|
rm -f `find $(top_srcdir) -type f -name "*~" -print`
|
|
rm -f `find $(top_srcdir) -type f -name "*.orig" -print`
|
|
rm -f `find $(top_srcdir) -type f -name "*.rej" -print`
|