diff options
author | June McEnroe <june@causal.agency> | 2018-04-10 23:54:45 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-04-10 23:54:45 -0400 |
commit | 896423634a152ecbbf846510e4a3e881ee0fa3c4 (patch) | |
tree | 306795aae98a99c69f221c4efa9ce5d9c8aba310 /bin/Makefile | |
parent | Add Under Your Spell (diff) | |
download | src-896423634a152ecbbf846510e4a3e881ee0fa3c4.tar.gz src-896423634a152ecbbf846510e4a3e881ee0fa3c4.zip |
Add brot
It's a Mandelbrot renderer.
Diffstat (limited to '')
-rw-r--r-- | bin/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/Makefile b/bin/Makefile index bbcc8c4b..b6d13697 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -1,4 +1,4 @@ -ANY_BINS = atch dtch gfxx glitch hnel pbcopy pbd pbpaste pngo scheme wake xx +ANY_BINS = atch brot dtch gfxx glitch hnel pbcopy pbd pbpaste pngo scheme wake xx BSD_BINS = klon watch LIN_BINS = bri fbatt fbclock ALL_BINS = $(ANY_BINS) $(BSD_BINS) $(LIN_BINS) @@ -24,6 +24,9 @@ tags: *.c atch: dtch ln -f dtch atch +brot: brot.o gfx/$(GFX).o + $(CC) $(LDFLAGS) brot.o gfx/$(GFX).o $(LDLIBS) $(LDLIBS_$(GFX)) -o $@ + gfxx: gfxx.o gfx/$(GFX).o $(CC) $(LDFLAGS) gfxx.o gfx/$(GFX).o $(LDLIBS) $(LDLIBS_$(GFX)) -o $@ |