summaryrefslogtreecommitdiff
path: root/libterm/Makefile
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2015-01-10 15:10:01 +0900
committerFreeArtMan <dos21h@gmail.com>2015-01-10 15:10:01 +0900
commit3e61314544a9151cb5a49db12a58c4fb74d6bee3 (patch)
tree5b9116b87b6c8abbc3ac13febc158007e3ccd071 /libterm/Makefile
parent3e989921c29534d38dbf6009851389fc4f4e226e (diff)
downloadmicrobbs-3e61314544a9151cb5a49db12a58c4fb74d6bee3.tar.gz
microbbs-3e61314544a9151cb5a49db12a58c4fb74d6bee3.zip
Bumped libterm
Diffstat (limited to 'libterm/Makefile')
-rw-r--r--libterm/Makefile7
1 files changed, 4 insertions, 3 deletions
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: