diff options
author | June McEnroe <june@causal.agency> | 2018-02-03 14:53:06 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-02-03 14:53:06 -0500 |
commit | f918ec37ffb7f8c8498f4478ec783ca8c495b864 (patch) | |
tree | 939365fc90df255d2108a1a88d7ad05ff14ebd75 /bin/Makefile | |
parent | Add gfxx palette loading (diff) | |
download | src-f918ec37ffb7f8c8498f4478ec783ca8c495b864.tar.gz src-f918ec37ffb7f8c8498f4478ec783ca8c495b864.zip |
Separate gfxx and its framebuffer frontend
Diffstat (limited to '')
-rw-r--r-- | bin/Makefile | 4 |
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 |