diff --git a/cv6/Makefile b/cv6/Makefile index e69de29..68db964 100644 --- a/cv6/Makefile +++ b/cv6/Makefile @@ -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 +