initial commit
This commit is contained in:
commit
47525f364d
28 changed files with 3181 additions and 0 deletions
20
Makefile
Normal file
20
Makefile
Normal file
|
@ -0,0 +1,20 @@
|
|||
ZIP := zip
|
||||
LOVE := love
|
||||
|
||||
NAME := ds_alpha
|
||||
VERSION := 0.0.1
|
||||
|
||||
SRCDIR := src
|
||||
BUILDDIR := build
|
||||
|
||||
.PHONY : all
|
||||
all : love
|
||||
|
||||
love :
|
||||
cd $(SRCDIR)/ && \
|
||||
$(ZIP) -9 -r ../$(BUILDDIR)/$(NAME)_$(VERSION).love .
|
||||
|
||||
run :
|
||||
$(LOVE) $(SRCDIR)/
|
||||
clean :
|
||||
rm -rf $(BUILDDIR)/*
|
Loading…
Add table
Add a link
Reference in a new issue