CFLAGS= -lncurses -lm # Link ncurses and math libraries
TARGET= earth
all:$(TARGET)
$(TARGET):$(TARGET).o
$(CC) -o $(TARGET)$(TARGET).o $(CFLAGS)
$(TARGET).o:$(TARGET).c
$(CC) -c $(TARGET).c
clean:
rm -f $(TARGET).o $(TARGET)
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.