summary refs log tree commit diff
path: root/bin/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-02-03 14:53:06 -0500
committerJune McEnroe <programble@gmail.com>2018-02-03 14:53:06 -0500
commit0e5960d6120dc94f01e45f36bcc578ab9ad012c9 (patch)
tree299002ac53f144388acf701337a81a137f2bbbbc /bin/Makefile
parentAdd gfxx palette loading (diff)
downloadsrc-0e5960d6120dc94f01e45f36bcc578ab9ad012c9.tar.gz
src-0e5960d6120dc94f01e45f36bcc578ab9ad012c9.zip
Separate gfxx and its framebuffer frontend
Diffstat (limited to 'bin/Makefile')
-rw-r--r--bin/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/Makefile b/bin/Makefile
index 52bca4d4..c7e44d87 100644
--- a/bin/Makefile
+++ b/bin/Makefile
@@ -15,6 +15,8 @@ linux: $(ANY_BINS) $(LIN_BINS) .gitignore
 atch: dtch
 	ln -f dtch atch
 
+gfxx: gfxx.o gfb.o
+
 pbcopy pbpaste: pbd
 	ln -f pbd $@
 
@@ -32,6 +34,6 @@ unlink:
 	rm -f $(ALL_BINS:%=~/.bin/%)
 
 .gitignore: Makefile
-	echo $(ALL_BINS) | tr ' ' '\n' > .gitignore
+	echo '*.o' $(ALL_BINS) | tr ' ' '\n' > .gitignore
 
 .PHONY: bsd linux any setuid clean link unlink