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 | d830a489eb2554434f49b6a3d14ce7e3f3f53f18 (patch) | |
tree | 060adb71e659ac0d1331da2ddb7d4fc8808e3bb8 /bin/Makefile | |
parent | Add Under Your Spell (diff) | |
download | src-d830a489eb2554434f49b6a3d14ce7e3f3f53f18.tar.gz src-d830a489eb2554434f49b6a3d14ce7e3f3f53f18.zip |
Add brot
It's a Mandelbrot renderer.
Diffstat (limited to 'bin/Makefile')
-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 $@ |