Remove Makefile

This commit is contained in:
Milan Nikolic 2022-11-27 17:50:24 +01:00
parent 89845f559c
commit 95269734e2
No known key found for this signature in database
GPG key ID: 9229D0EAA3AA4E75

View file

@ -1,11 +0,0 @@
PACKAGES= raylib raygui easings physics rres
GO?= go
all: packages
packages:
@for pkg in ${PACKAGES}; do \
echo "Building package github.com/gen2brain/raylib-go/$$pkg..."; \
${GO} build github.com/gen2brain/raylib-go/$$pkg || exit 1; \
done