fracwall

This fractal wallpaper generator creates a bitmap file depicting either the Mandelbrot or the Julia set
Log | Files | Refs | README | LICENSE

Makefile (394B)


      1 # Fractal Wallpaper Makefile
      2 # "Makefile"
      3 # M. Yamanaka
      4 # email: myamanaka@live.com
      5 # website: csmyamanaka.com
      6 # license: MIT (See included "LICENSE" file for details)
      7 
      8 FILES=fracwall.c juliamath.c config.c
      9 FIOPPDIR=$(HOME)/.local/repos/fileiopp
     10 FILEIOPP=$(FIOPPDIR)/fileiopp.o
     11 OUT=FracWall
     12 
     13 all: $(OUT)
     14 
     15 $(OUT): $(FILES) $(FILEIOPP)
     16 	gcc $^ -I$(FIOPPDIR) -o $@
     17 
     18 clean:
     19 	rm -f *.o $(OUT) *.bmp

Generated using stagit (https://codemadness.org/stagit.html)