23 lines
		
	
	
		
			557 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			557 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
 | ||
| #
 | ||
| #  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 movepixels
 | ||
| 
 | ||
| assemblage:	assemblage.c ${DEPS} 
 | ||
| 	gcc $(COPT) $< ../libfloatimg.a ${LIBS} -o $@
 | ||
| 
 | ||
| extracteur:	extracteur.c ${DEPS}
 | ||
| 	gcc $(COPT) $<  ../libfloatimg.a ${LIBS} -o $@
 | ||
| 
 | ||
| muxplanes:	muxplanes.c ${DEPS}
 | ||
| 	gcc $(COPT) $<  ../libfloatimg.a ${LIBS} -o $@
 | ||
| 
 | ||
| movepixels:	movepixels.c ${DEPS}
 | ||
| 	gcc $(COPT) $<  ../libfloatimg.a ${LIBS} -o $@
 | 
