summaryrefslogtreecommitdiff
path: root/libterm/Makefile
diff options
context:
space:
mode:
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: