blob: 03e9bd2bb8ad443dbebc9b543ae883c4558e1c4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
VPATH = @srcdir@
srcdir = @srcdir@
all:
@echo "Nothing to be done for all..."
#### host, target, and site specific Makefile frags come in here.
clean mostlyclean:
-rm -f *.o *~ core tmp.c tmp.s weird.s errs exclfwd gdb11479
distclean maintainer-clean realclean: clean
-rm -f Makefile config.status config.log
Makefile: $(srcdir)/Makefile.in $(srcdir)/configure.ac
$(SHELL) ./config.status --recheck
|