blob: 6fa8bef30409c8efd0408f4fba1acb8398c8af15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#### host, target, and site specific Makefile frags come in here.
srcdir = .
CFLAGS = -g
.PHONY: all clean mostlyclean distclean realclean
all: $(EXECUTABLES)
clean mostlyclean:
-rm -f *.o $(EXECUTABLES) *.diff *~ *.bad core foo twice-tmp.c
distclean realclean: clean
-rm -f Makefile config.status
Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
$(SHELL) ./config.status
|