third massive import batch

This commit is contained in:
tth
2022-06-27 00:48:18 +02:00
parent 96d7a5399f
commit f3e30ea3bb
54 changed files with 4737 additions and 123 deletions

24
Tools/Makefile Normal file
View File

@@ -0,0 +1,24 @@
#-----------------------------------------------------------------
#
# Fabrication des outils - nouvelle version 26 juin 2022
#
#-----------------------------------------------------------------
include ../Paramakes.mk
DEPS = ../tthimage.h Makefile
all: tga_tools
#-----------------------------------------------------------------
fonctions.o: fonctions.c
gcc $(CFLAGS) -c $<
#-----------------------------------------------------------------
tga_tools: tga_tools.c $(DEPS) fonctions.o
gcc $(CFLAGS) $< ../libimage.a fonctions.o -o $@
#-----------------------------------------------------------------