21 lines
621 B
Makefile
21 lines
621 B
Makefile
# (c) Copyright 2018 by Coinkite Inc. This file is covered by license found in COPYING-CC.
|
|
|
|
all: graphics.py graphics_mk4.py graphics_q1.py
|
|
|
|
SOURCES = $(filter-out mono/mk4_%, $(wildcard mono/*.txt) $(wildcard mono/*.png))
|
|
MK4_SOURCES = $(wildcard mono/mk4_*.txt) $(wildcard mono/mk4_*.png)
|
|
Q1_SOURCES = colour/*.???
|
|
|
|
graphics.py: Makefile $(SOURCES) build.py
|
|
./build.py graphics.py $(SOURCES)
|
|
|
|
graphics_mk4.py: Makefile $(MK4_SOURCES) build.py
|
|
./build.py graphics_mk4.py $(MK4_SOURCES)
|
|
|
|
graphics_q1.py: Makefile $(Q1_SOURCES) compress.py
|
|
./compress.py graphics_q1.py $(Q1_SOURCES)
|
|
|
|
up: all
|
|
(cd ../shared; make up)
|
|
|