diff Makefile.in @ 1380:d94b080ff6ce

Completely removed dependency on automake
author Sam Lantinga <slouken@libsdl.org>
date Mon, 20 Feb 2006 02:09:49 +0000
parents 88ddeb76c9c1
children b34d38f76a2a
line wrap: on
line diff
--- a/Makefile.in	Sun Feb 19 23:46:34 2006 +0000
+++ b/Makefile.in	Mon Feb 20 02:09:49 2006 +0000
@@ -15,6 +15,7 @@
 distdir = SDL-@SDL_VERSION@
 distfile = $(distdir).tar.gz
 
+@SET_MAKE@
 SHELL	= @SHELL@
 CC      = @CC@
 INCLUDE = @INCLUDE@
@@ -104,6 +105,7 @@
 
 clean:
 	rm -rf $(objects)
+	if test -f test/Makefile; then (cd test; $(MAKE) $@); fi
 
 distclean: clean
 	rm -f Makefile include/SDL_config.h sdl-config
@@ -115,6 +117,7 @@
 	    -name '.#*' \
 	    -exec rm -f {} \;
 	cp include/SDL_config.h.minimal include/SDL_config.h
+	if test -f test/Makefile; then (cd test; $(MAKE) $@); fi
 
 dist $(distfile):
 	$(SHELL) @ac_aux_dir@/mkinstalldirs $(distdir)