diff options
author | FreeArtMan <dos21h@gmail.com> | 2016-05-23 21:51:44 +0100 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2016-05-23 21:51:44 +0100 |
commit | cb141140579d796ae5cafe6da52b4f0b87be6a84 (patch) | |
tree | 61e0130a1581e1ba99dabed32c82782699db064c /libterm/Makefile | |
parent | 4baa01f8cd595cb0517d8f7f665d5be92528b6c2 (diff) | |
download | ihe-cb141140579d796ae5cafe6da52b4f0b87be6a84.tar.gz ihe-cb141140579d796ae5cafe6da52b4f0b87be6a84.zip |
Simplifying logic. Removing buffer features
Diffstat (limited to 'libterm/Makefile')
-rw-r--r-- | libterm/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
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 + + |