+ movepixels experiment

This commit is contained in:
tth
2021-06-11 06:55:40 +02:00
parent f24ad0d229
commit 40bf700a32
3 changed files with 162 additions and 3 deletions

View File

@@ -1,12 +1,13 @@
#  experiments
#
#  some ugly experiments, do not use in production
#
COPT = -Wall -fpic -g -DDEBUG_LEVEL=1 -lm
DEPS = ../floatimg.h ../libfloatimg.a Makefile
LIBS = -ltiff -lpnglite -lcfitsio
all: assemblage extracteur muxplanes
all: assemblage extracteur muxplanes movepixels
assemblage: assemblage.c ${DEPS}
gcc $(COPT) $< ../libfloatimg.a ${LIBS} -o $@
@@ -16,3 +17,6 @@ extracteur: extracteur.c ${DEPS}
muxplanes: muxplanes.c ${DEPS}
gcc $(COPT) $< ../libfloatimg.a ${LIBS} -o $@
movepixels: movepixels.c ${DEPS}
gcc $(COPT) $< ../libfloatimg.a ${LIBS} -o $@