SAE11_2023/#Makefile#
2023-12-14 12:21:34 +01:00

15 lines
172 B
Plaintext

CC = gcc
CFLAGS = -Wall -Wextra -I.
LIBS = -lgraph
all: serpent
serpent: main.o serpent.o
$() $() $^ -o $@ $()
%.o: %.c
$() $() -c $< -o $@
clean:
rm -f *.o serpent