Files
earth-c/Makefile
2024-09-29 02:35:29 -04:00

15 lines
249 B
Makefile

CC = gcc
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)