From 22bac17197ee4bbbdcf51ae40f2adabe33339a2d Mon Sep 17 00:00:00 2001 From: dborth Date: Fri, 8 May 2009 03:07:24 +0000 Subject: [PATCH] run: before all: is a naughty thing! moving it below... --- SDL/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SDL/Makefile b/SDL/Makefile index dddfe1e..d36867b 100644 --- a/SDL/Makefile +++ b/SDL/Makefile @@ -49,12 +49,12 @@ SDL_SRCS := \ # Library object files. SDL_OBJS := $(subst $(SDL_SRC_DIR),$(SDL_OBJ_DIR),$(SDL_SRCS:.c=.o)) -# Used to install library by pressing Alt+R in Programmer's Notepad -run: all lib-install - # What's a full build? all: $(LIB_DIR)/libSDL.a +# Used to install library by pressing Alt+R in Programmer's Notepad +run: all lib-install + # How to delete the intermediate files. clean: @echo Cleaning $(LIB_DIR) $(SDL_OBJS)