thgtoa/Makefile
No 3858c91f14
v1.2.0
Apply ML fixes
2024-07-12 20:13:32 -04:00

18 lines
233 B
Makefile

SH = bash
# Define the scripts
SCRIPTS = make.sh clean.sh
# Define the target
.PHONY: all guide clean
# Default target
all: clean guide
# Target to run script1
clean:
$(SH) clean.sh
# Target to run script2
guide:
$(SH) make.sh