experiment on incrustation

This commit is contained in:
tth
2021-03-28 18:52:03 +02:00
parent 5d121dee87
commit 6e410e5f50
6 changed files with 152 additions and 2 deletions

View File

@@ -1 +1,16 @@
# plasma experiment
#  experiments
COPT = -Wall -fpic -g -DDEBUG_LEVEL=0 -lm
DEPS = ../floatimg.h ../libfloatimg.a Makefile
LIBS = -ltiff -lpnglite -lcfitsio
all: assemblage
incrustator.o: incrustator.c incrustator.h Makefile
gcc -c $(COPT) $<
assemblage: assemblage.c Makefile incrustator.o
gcc $(COPT) $< incrustator.o ../libfloatimg.a $(LIBS) -o $@