@@ -0,0 +1,19 @@
SRCS = $(wildcard *.c)
OBJS = $(SRCS:%.c=%.o)
CFLAGS = -O2 -static
LDFLAGS = -s
all: init respawn
clean:
rm -f init respawn $(OBJS)
$(OBJS):
%: %.o
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
The note is not visible to the blocked user.