Add cv6/Makefile

This commit is contained in:
Viktor Daniv 2024-11-06 11:11:01 +00:00
parent 945eff59c9
commit a79a52b3cc

12
cv6/Makefile Normal file
View File

@ -0,0 +1,12 @@
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