From 3e61314544a9151cb5a49db12a58c4fb74d6bee3 Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Sat, 10 Jan 2015 15:10:01 +0900 Subject: Bumped libterm --- libterm/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'libterm/Makefile') diff --git a/libterm/Makefile b/libterm/Makefile index 98962f5..457eea6 100644 --- a/libterm/Makefile +++ b/libterm/Makefile @@ -1,11 +1,12 @@ PROJECT=libterm CC=gcc LD=ld +CFLAGS= make: - $(CC) -c term.c - $(CC) -c screen_modes.c - $(CC) -c term_io.c + $(CC) $(CFLAGS) -c term.c + $(CC) $(CFLAGS) -c screen_modes.c + $(CC) $(CFLAGS) -c term_io.c $(LD) -r term.o screen_modes.o term_io.o -o $(PROJECT).o clean: -- cgit v1.2.3