added config file
This commit is contained in:
parent
93ba24a53a
commit
95751be63e
4 changed files with 67 additions and 18 deletions
6
Makefile
6
Makefile
|
@ -6,20 +6,22 @@ WALL = public/assets/wall32.png
|
|||
|
||||
SNAKE = public/assets/snake.json
|
||||
LEVEL_LIST = public/assets/levelList.json
|
||||
CONFIG = public/assets/config.json
|
||||
|
||||
CSS = public/css/snek.css
|
||||
|
||||
JS = public/js/snek.js
|
||||
|
||||
OUTPUT = $(ICON) $(APPLE) $(WALL) $(SNAKE) $(LEVEL_LIST) $(CSS) $(JS)
|
||||
OUTPUT = $(ICON) $(APPLE) $(WALL) $(SNAKE) $(LEVEL_LIST) $(CONFIG) $(CSS) $(JS)
|
||||
|
||||
all: icon apple wall snake levelList css js
|
||||
all: icon apple wall snake levelList config css js
|
||||
icon: $(ICON)
|
||||
apple: $(APPLE)
|
||||
wall: $(WALL)
|
||||
|
||||
snake: $(SNAKE)
|
||||
levelList: $(LEVEL_LIST)
|
||||
config: $(CONFIG)
|
||||
|
||||
css: $(CSS)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue