From d830a489eb2554434f49b6a3d14ce7e3f3f53f18 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 10 Apr 2018 23:54:45 -0400 Subject: Add brot It's a Mandelbrot renderer. --- bin/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bin/Makefile') 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 $@ -- cgit 1.4.1