2022-06-01 12:32:04 +02:00
|
|
|
CC = gcc
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2022-06-01 17:01:23 +02:00
|
|
|
./b2hd < ../02400031.TXT > rawData.txt
|
|
|
|
./getArray
|
2022-06-01 12:32:04 +02:00
|
|
|
clean:
|
2022-06-01 17:01:23 +02:00
|
|
|
rm decValues.txt newFile.txt
|