nuclear@0: root ?= $(shell pwd) nuclear@0: nuclear@10: src = $(wildcard $(root)/src/*.c) \ nuclear@10: $(wildcard $(root)/libs/drawtext/*.c) \ nuclear@14: $(wildcard $(root)/libs/vmath/*.c) \ nuclear@14: $(wildcard $(root)/libs/imago/*.c) \ nuclear@14: $(wildcard $(root)/libs/libjpeg/*.c) \ nuclear@14: $(wildcard $(root)/libs/libpng/*.c) nuclear@10: nuclear@10: ccsrc = $(wildcard $(root)/src/*.cc) \ nuclear@10: $(wildcard $(root)/libs/vmath/*.cc) nuclear@10: nuclear@0: bin = photoshoot3d nuclear@0: title = 3D Photo Shoot nuclear@0: nuclear@14: incpaths = -I$(root)/src -I$(root)/libs \ nuclear@14: -I$(root)/libs/vmath \ nuclear@14: -I$(root)/libs/imago \ nuclear@14: -I$(root)/libs/libjpeg \ nuclear@14: -I$(root)/libs/libpng \ nuclear@14: -I$(root)/libs/drawtext nuclear@0: libpaths = nuclear@10: defs = -DNO_FREETYPE nuclear@14: libs = -lz -lm