diff --git a/Makerfile b/Makerfile new file mode 100644 index 0000000..67a92c0 --- /dev/null +++ b/Makerfile @@ -0,0 +1,22 @@ +# Makefile for CreoIDE project + +# CreoLang compiler +CREOC = creoc + +# Source files +SRCS = $(wildcard *.creo) + +# Target executable +TARGET = CreoIDE + +# Default target +all: $(TARGET) + +# Compile source files +$(TARGET): $(SRCS) + $(CREOC) -o $@ $^ + +# Clean up compiled files +clean: + rm -f $(TARGET) +