15 lines
354 B
Makefile
15 lines
354 B
Makefile
|
VPATH = @srcdir@
|
||
|
srcdir = @srcdir@
|
||
|
|
||
|
EXECUTABLES = hello hangout goodbye bkpt-multi-exec crashme
|
||
|
|
||
|
all info install-info dvi install uninstall installcheck check:
|
||
|
@echo "Nothing to be done for $@..."
|
||
|
|
||
|
clean mostlyclean:
|
||
|
-rm -f *~ *.o *.ci
|
||
|
-rm -f core $(EXECUTABLES)
|
||
|
|
||
|
distclean maintainer-clean realclean: clean
|
||
|
-rm -f Makefile config.status config.log
|