18 lines
410 B
Makefile
18 lines
410 B
Makefile
|
#### 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
|