1
0
mirror of https://github.com/DigitalDevices/dddvb.git synced 2023-10-10 13:37:43 +02:00
dddvb/apps/octonet/Makefile

10 lines
208 B
Makefile
Raw Normal View History

2016-09-09 18:31:53 +02:00
PROGS=ddtest octonet octokey ddflash
all: $(PROGS)
2015-08-05 17:22:42 +02:00
2016-09-09 18:31:53 +02:00
install: $(subst,$(PROGS),%,install-%)
$(subst,$(PROGS),%,install-%): install-%: %
install -m 0755 $< $(DESTDIR)/usr/bin
2016-01-07 21:12:53 +01:00
2016-09-09 18:31:53 +02:00
$(PROGS): %: %.c
$(CC) -o $@ $<