12 lines
245 B
Makefile
12 lines
245 B
Makefile
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
|
|
|
|
./b2hd < ../02400031.TXT > rawData.txt
|
|
./getArray
|
|
clean:
|
|
rm decValues.txt newFile.txt
|