# All we need is C99 and POSIX, which this should make available
CFLAGS= -std=gnu99
NAMES= bfc-amd64-linux
all:$(NAMES)
%: %.c
$(CC)$(CPPFLAGS)$(CFLAGS) $< -o $@
clean:
rm -f $(NAMES)
.PHONY:allclean
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.