aboutsummaryrefslogtreecommitdiffstats
path: root/dvb-t/se-Rusksele
diff options
context:
space:
mode:
authorJonathan McCrohan <jmccrohan@gmail.com>2016-06-11 15:19:36 +0100
committerJonathan McCrohan <jmccrohan@gmail.com>2016-06-11 15:19:36 +0100
commitcdadd04b8d15fe78136cff6debd54b74dbe7d28c (patch)
tree0a55a30512159a8c4980c7283eeae84a0bc37b47 /dvb-t/se-Rusksele
parente4de63418439eb0b60a19db542c6e7e60fc9ebd6 (diff)
parent800dccb249b663bdbd99e876996d4b5ac5ffa937 (diff)
downloaddtv-scan-tables-cdadd04b8d15fe78136cff6debd54b74dbe7d28c.tar.gz
Merge tag 'upstream/0+git20160503.4f192bd'
Upstream version 0+git20160503.4f192bd
Diffstat (limited to 'dvb-t/se-Rusksele')
0 files changed, 0 insertions, 0 deletions
ckground-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
OBJECTS = nyancat.o

all: nyancat

nyancat: $(OBJECTS)
	$(CC) $(LFLAGS) $(OBJECTS) -o $@

clean:
	-rm -f $(OBJECTS) nyancat

check: all
	# Unit tests go here. None currently.
	@echo "*** ALL TESTS PASSED ***"

.PHONY: all clean check