Skip to content

Commit

Permalink
Create Makerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
CreoDAMO authored May 3, 2024
1 parent 8d2b05f commit 70d8adc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Makerfile
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 70d8adc

Please sign in to comment.