28 lines
608 B
Makefile
28 lines
608 B
Makefile
VPATH = @srcdir@
|
|
srcdir = @srcdir@
|
|
|
|
EXECUTABLES = ambiguous annota2 anon-union cplusfuncs cttiadd \
|
|
derivation inherit local member-ptr method misc \
|
|
overload ovldbreak ref-typ ref-typ2 templates userdef virtfunc namespace ref-types
|
|
|
|
all:
|
|
@echo "Nothing to be done for all..."
|
|
|
|
info:
|
|
install-info:
|
|
dvi:
|
|
install:
|
|
uninstall: force
|
|
installcheck:
|
|
check:
|
|
|
|
clean mostlyclean:
|
|
-rm -f *~ *.o *.ci
|
|
-rm -f core ${EXECUTABLES}
|
|
|
|
distclean maintainer-clean realclean: clean
|
|
-rm -f Makefile config.status config.log
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(srcdir)/configure.in
|
|
$(SHELL) ./config.status --recheck
|