Traitement-signal-plantes/C-Script/Makefile

9 lines
114 B
Makefile
Raw Normal View History

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