Update cv6/Makefile

This commit is contained in:
Yurii Yakovenko 2024-10-28 17:03:31 +00:00
parent 234655c4f1
commit 10691c6016

View File

@ -0,0 +1,13 @@
CFLAGS= -std=c99 -g -Wall -Werror
all: station
%.o: %.c
gcc -c -o $@ $< $(CFLAGS)
station: main.o a_station.o
gcc $(CFLAGS) main.o a_station.o -o station
clean:
rm *.o station