@@ -0,0 +1,14 @@
include config.mk
OBJS = main.o window.o
all: $(TARGET)
$(TARGET): $(OBJS)
$(CC) $(CFLAGS) -o $(TARGET) $(OBJS)
%.o: %.c
$(CC) $(CFLAGS) -c $<
clean:
rm -f *.o $(TARGET)
The note is not visible to the blocked user.