Mirror of roytam1's UXP fork just in case Moonchild and Tobin decide to go after him
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# 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
|
|
|