mirror of
https://github.com/Anon-Planet/thgtoa.git
synced 2025-03-15 10:46:35 -04:00
18 lines
233 B
Makefile
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
|