7 lines
112 B
Makefile
7 lines
112 B
Makefile
CC = gcc
|
|
TARGET = data
|
|
|
|
all:
|
|
$(CC) b2hd.c getArray.c fileGestion.c power.c main.c -o main
|
|
clean:
|
|
rm *.txt *.o
|