38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			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	\
 | |
| 	tga_television
 | |
| 
 | |
| #-----------------------------------------------------------------
 | |
| 
 | |
| 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_television:	tga_television.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 $@
 | |
| 
 | |
| 
 | |
| #-----------------------------------------------------------------
 | 
