Traitement-signal-plantes/Code-C/Makefile

13 lines
262 B
Makefile
Raw Normal View History

2022-06-01 12:32:04 +02:00
CC = gcc
TARGET = data
all:
$(CC) b2hd.c -o b2hd
$(CC) fileGestion.c getArray.c -o getArray
#$(CC) power.c -o power
#getArray.c fileGestion.c power.c main.c -o main
./b2hd < ../02400031.TXT > decValues.txt
./getArray < decValues.txt
clean:
rm *.txt *.o