38 lines
		
	
	
		
			875 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			875 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#---------------------------------------------------------------
 | 
						|
 | 
						|
COPT = -Wall -fpic -g -no-pie -DDEBUG_LEVEL=0
 | 
						|
DEPS = ../floatimg.h Makefile
 | 
						|
OBJS = fimg-png.o fimg-tiff.o misc-plots.o filtrage.o utils.o	\
 | 
						|
	fimg-libpnm.o rampes.o
 | 
						|
 | 
						|
#---------------------------------------------------------------
 | 
						|
 | 
						|
t:	t.c $(DEPS) ../libfloatimg.a
 | 
						|
	gcc $(COPT) $< ../libfloatimg.a -lnetpbm -lpnglite -lz -lm -o $@
 | 
						|
 | 
						|
#---------------------------------------------------------------
 | 
						|
 | 
						|
../libfloatimg.a:       $(OBJS)
 | 
						|
	$(AR) r $@ $?
 | 
						|
 | 
						|
fimg-png.o:		fimg-png.c $(DEPS)
 | 
						|
	gcc $(COPT) -c $<
 | 
						|
 | 
						|
fimg-tiff.o:		fimg-tiff.c $(DEPS)
 | 
						|
	gcc $(COPT) -c $<
 | 
						|
 | 
						|
fimg-libpnm.o:		fimg-libpnm.c $(DEPS)
 | 
						|
	gcc $(COPT) -c $<
 | 
						|
 | 
						|
misc-plots.o:		misc-plots.c $(DEPS)
 | 
						|
	gcc $(COPT) -c $<
 | 
						|
 | 
						|
filtrage.o:		filtrage.c $(DEPS)
 | 
						|
	gcc $(COPT) -c $<
 | 
						|
 | 
						|
rampes.o:		rampes.c $(DEPS)
 | 
						|
	gcc $(COPT) -c $<
 | 
						|
 | 
						|
utils.o:		utils.c $(DEPS)
 | 
						|
	gcc $(COPT) -c $<
 |