Traitement-signal-plantes/C-Script/Makefile

11 lines
196 B
Makefile
Raw Normal View History

2022-05-30 15:14:22 +02:00
CC = gcc
TARGET = data
2022-05-30 18:01:28 +02:00
all: b2hd.c getArray.c power.c newFileData.c
2022-05-30 15:14:22 +02:00
$(CC) b2hd.c -o b2hd
$(CC) getArray.c -o getArray
2022-05-30 18:01:28 +02:00
$(CC) power.c -o power
$(CC) newFileData.c -o newFileData
2022-05-30 15:14:22 +02:00
clean:
rm *.o