FloatImg/experiment/Makefile

16 lines
338 B
Makefile
Raw Normal View History

2021-03-28 18:52:03 +02:00
#  experiments
2021-03-30 21:22:04 +02:00
COPT = -Wall -fpic -g -DDEBUG_LEVEL=1 -lm
2021-03-28 18:52:03 +02:00
DEPS = ../floatimg.h ../libfloatimg.a Makefile
LIBS = -ltiff -lpnglite -lcfitsio
2021-04-07 20:55:38 +02:00
all: assemblage extracteur
2021-03-28 18:52:03 +02:00
2021-04-28 00:21:45 +02:00
assemblage: assemblage.c Makefile
2021-05-10 00:44:29 +02:00
gcc $(COPT) $< ../libfloatimg.a $(LIBS) -o $@
2021-03-28 18:52:03 +02:00
2021-04-07 20:55:38 +02:00
extracteur: extracteur.c Makefile
gcc $(COPT) $< ../libfloatimg.a $(LIBS) -o $@