11 lines
165 B
Makefile
11 lines
165 B
Makefile
|
#!make
|
||
|
include .makeVars
|
||
|
|
||
|
# Copyright (c) 2024 Bryan Joshua Pedini
|
||
|
# License: MIT ยท see LICENSE file for more details
|
||
|
|
||
|
default: build
|
||
|
|
||
|
build:
|
||
|
bash -c "./build.sh"
|