FloatImg/contrib/Makefile

18 lines
424 B
Makefile
Raw Normal View History

2022-01-08 17:48:18 +01:00
2023-01-22 15:26:55 +01:00
DBGL = -DDEBUG_LEVEL=1 -g
2022-01-08 17:48:18 +01:00
fimg2povhf: fimg2povhf.c Makefile
gcc -Wall $(DBGL) $< -limage -lfloatimg -lm -o $@
2023-01-22 15:26:55 +01:00
# --------------------------------------------------------
2022-01-08 17:48:18 +01:00
2023-01-22 15:26:55 +01:00
demo_fmorph: demo_fmorph.c Makefile
gcc -Wall $(DBGL) $< -lfloatimg -lpnglite -lm -o $@
in.fimg: Makefile
mkfimg -t tpat0 -v $@ 640 480
out.png: in.fimg demo_fmorph
./demo_fmorph $< $@
# --------------------------------------------------------