FloatImg/experiment/Makefile

16 lines
335 B
Makefile
Raw Normal View History

2021-03-29 03:52:03 +11:00
#  experiments
2021-03-31 06:22:04 +11:00
COPT = -Wall -fpic -g -DDEBUG_LEVEL=1 -lm
2021-03-29 03:52:03 +11:00
DEPS = ../floatimg.h ../libfloatimg.a Makefile
LIBS = -ltiff -lpnglite -lcfitsio
2021-04-08 05:55:38 +11:00
all: assemblage extracteur
2021-03-29 03:52:03 +11:00
2021-05-10 09:49:46 +11:00
assemblage: assemblage.c ${DEPS}
2021-05-10 09:44:29 +11:00
gcc $(COPT) $< ../libfloatimg.a $(LIBS) -o $@
2021-03-29 03:52:03 +11:00
2021-05-10 09:49:46 +11:00
extracteur: extracteur.c ${DEPS}
2021-04-08 05:55:38 +11:00
gcc $(COPT) $< ../libfloatimg.a $(LIBS) -o $@