From e63aff702c6adbb6ed7d7c7ac7ae795d5485ccea Mon Sep 17 00:00:00 2001 From: Robert Manea Date: Mon, 5 Oct 2009 10:44:08 +0200 Subject: Makefile additions --- Makefile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index bc348a5..b6d573f 100644 --- a/Makefile +++ b/Makefile @@ -12,19 +12,26 @@ OBJ = ${SRC:.c=.o} all: uzbl-browser options options: - @echo uzbl-core build options: + @echo + @echo BUILD OPTIONS: @echo "CFLAGS = ${CFLAGS}" @echo "LDFLAGS = ${LDFLAGS}" + @echo + @echo See the README file for usage instructions. + .c.o: - @echo Compiling $< + @echo COMPILING $< @${CC} -c ${CFLAGS} $< + @echo ... done. ${OBJ}: uzbl-core.h events.h callbacks.h config.h uzbl-core: ${OBJ} - @echo Linking object files + @echo + @echo LINKING object files @${CC} -o $@ ${OBJ} ${LDFLAGS} + @echo ... done. -- cgit v1.2.3