From cb141140579d796ae5cafe6da52b4f0b87be6a84 Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Mon, 23 May 2016 21:51:44 +0100 Subject: Simplifying logic. Removing buffer features --- libterm/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 libterm/Makefile (limited to 'libterm/Makefile') diff --git a/libterm/Makefile b/libterm/Makefile new file mode 100644 index 0000000..759b3f5 --- /dev/null +++ b/libterm/Makefile @@ -0,0 +1,16 @@ +PROJECT=libterm +CC=gcc +LD=ld +CFLAGS=-g3 + +make: + $(CC) $(CFLAGS) -c term.c + $(CC) $(CFLAGS) -c screen_modes.c + $(CC) $(CFLAGS) -c term_io.c + $(CC) $(CFLAGS) -c term_gui.c + $(LD) -r term.o screen_modes.o term_io.o term_gui.o -o $(PROJECT).o + +clean: + rm *.o + + -- cgit v1.2.3