@@ -0,0 +1,23 @@
##
# Toy Forth
#
# @file
# @version 0.1
CC=gcc
CFLAGS=-W -Wall -O2
SRC=toyforth.c
OUT=toyforth
all: $(OUT)
$(OUT): $(SRC)
$(CC) $(CFLAGS) $(SRC) -o $@
run: $(OUT)
./$(OUT) program.tf
clean:
rm -f $(OUT)
# end
The note is not visible to the blocked user.