# this file: # https://dataswamp.org/~incal/metal-shelf/Makefile proj = metal-shelf src = $(proj).scad dst = $(proj).png opts = --colorscheme "Starnight" all: $(dst) $(dst): $(src) DISPLAY=:0 openscad $(opts) -o $@ $< clean: rm -f $(dst) new: ${MAKE} clean ${MAKE} all