@@ -0,0 +1,8 @@
PROG=a.exe
OBJS=main.o
all: $(PROG)
$(PROG): $(OBJS)
$(CC) $(CFLAGS) -o $@ $<
#include <stdio.h>
int
main(int argc, const char *argv[])
{
printf("helloworld!\n");
return 0;
}
The note is not visible to the blocked user.