mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
10 lines
208 B
Makefile
10 lines
208 B
Makefile
PROGS=ddtest octonet octokey ddflash
|
|
all: $(PROGS)
|
|
|
|
install: $(subst,$(PROGS),%,install-%)
|
|
$(subst,$(PROGS),%,install-%): install-%: %
|
|
install -m 0755 $< $(DESTDIR)/usr/bin
|
|
|
|
$(PROGS): %: %.c
|
|
$(CC) -o $@ $<
|