34 lines
		
	
	
		
			963 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			963 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#-----------------------------------------------------------------
 | 
						|
#
 | 
						|
#	Fabrication des outils - nouvelle version 26 juin 2022
 | 
						|
#
 | 
						|
#-----------------------------------------------------------------
 | 
						|
 | 
						|
include ../Paramakes.mk
 | 
						|
 | 
						|
DEPS = ../tthimage.h Makefile 
 | 
						|
 | 
						|
all:	tga_cadre tga_effects tga_filtres tga_tools
 | 
						|
 | 
						|
#-----------------------------------------------------------------
 | 
						|
 | 
						|
fonctions.o:	fonctions.c $(DEPS)
 | 
						|
	gcc $(CFLAGS) -c $< 
 | 
						|
 | 
						|
#-----------------------------------------------------------------
 | 
						|
 | 
						|
tga_cadre:	tga_cadre.c $(DEPS) fonctions.o
 | 
						|
	gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
 | 
						|
 | 
						|
tga_effects:	tga_effects.c $(DEPS) fonctions.o
 | 
						|
	gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
 | 
						|
 | 
						|
tga_filtres:	tga_filtres.c $(DEPS) fonctions.o
 | 
						|
	gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
 | 
						|
 | 
						|
tga_tools:	tga_tools.c $(DEPS) fonctions.o
 | 
						|
	gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
 | 
						|
 | 
						|
 | 
						|
#-----------------------------------------------------------------
 |