Add world files to build

This commit is contained in:
2026-02-17 14:40:49 +01:00
parent e74f1255a6
commit abbc3e5aa7

View File

@@ -6,8 +6,8 @@ TARGET = main
all: $(TARGET) all: $(TARGET)
$(TARGET): main.c random.c random.h $(TARGET): main.c random.c random.h world.c world.h
$(CC) $(CFLAGS) -o $@ main.c random.c $(CC) $(CFLAGS) -o $@ main.c random.c world.c
clean: clean:
rm -f $(TARGET) rm -f $(TARGET)