# Sweden - Gnarp # T freq bw fec_hi fec_lo mod transmission-mode guard-interval hierarchy T 602000000 8MHz 2/3 NONE QAM64 8k 1/8 NONE l='alternate' title='Atom feed' href='https://git.dereenigne.org/debian/nyancat.git/atom/src/Makefile?h=upstream' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
blob: c77c6cb98b512c4fef5450b9421fe25f8847450e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
OBJECTS = nyancat.o

all: nyancat

nyancat: $(OBJECTS)
	$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(OBJECTS) -o $@

clean:
	-rm -f $(OBJECTS) nyancat

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

.PHONY: all clean check