mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 14:28:39 +09:00
14 lines
261 B
Text
14 lines
261 B
Text
|
|
# This Makefile is used as a shim to aid people with muscle memory
|
||
|
|
# so that they can type "make".
|
||
|
|
#
|
||
|
|
# This file and all of its targets should not be used by anything important.
|
||
|
|
|
||
|
|
all: build
|
||
|
|
|
||
|
|
build:
|
||
|
|
./mach build
|
||
|
|
|
||
|
|
clean:
|
||
|
|
./mach clobber
|
||
|
|
|
||
|
|
.PHONY: all build clean
|