noice

small file browser
git clone git://git.2f30.org/noice
Log | Files | Refs | README | LICENSE

commit e776ebe36ce5b7fa7c7ec945af5a884ea4259dd2
parent a13096b773fac95b5fa3757edbf925566e68326b
Author: sin <sin@2f30.org>
Date:   Tue, 21 Oct 2014 11:21:50 +0100

Use CFLAGS too

Diffstat:
MMakefile | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -7,17 +7,17 @@ BIN = noice all: $(BIN) $(BIN): config.h $(OBJ) - $(CC) -o $@ $(OBJ) $(LDLIBS) + $(CC) $(CFLAGS) -o $@ $(OBJ) $(LDLIBS) config.h: @echo copying config.def.h to $@ @cp config.def.h $@ noice.o: noice.c queue.h util.h - $(CC) -c noice.c + $(CC) $(CFLAGS) -c noice.c strlcpy.o: strlcpy.c util.h - $(CC) -c strlcpy.c + $(CC) $(CFLAGS) -c strlcpy.c clean: rm -f $(BIN) $(OBJ)