@ -0,0 +1,20 @@
.PHONY: clean, mrproper
CC = gcc
CFLAGS = -g -Wall
all: main
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
main: main.o
$(CC) $(CFLAGS) -o $@ $+
clean:
rm -f *.o core.*
mrproper: clean
rm -f main
run: main
./$< ./hello_world.bf
The note is not visible to the blocked user.