scheme/tortoise/Makefile
Geir Okkenhaug Jerstad 719a91ab24 adde Makefile
2024-08-18 11:09:05 +02:00

21 lines
259 B
Makefile

# Basic Makefile for the tortoise package.
CFLAGS =
LIBS =
.PHONY: clean build run
build: tortoise
clean:
rm -f tortoise tortoise.o
run: tortoise
./tortoise
tortoise: tortoise.o
gcc $< -o $@ $(LIBS)
tortoise.o: tortoise.c
gcc -c $< -o $@ $(CFLAGS)