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

15 lines
297 B
Makefile
Raw Normal View History

2016-09-09 18:31:53 +02:00
PTHREAD_BINS=cit modt
INCLUDE_BINS=setmod setmod2 setmod3
STANDARD_BINS=flashprog ddtest ddflash pls
2015-08-05 17:22:42 +02:00
2016-09-09 18:31:53 +02:00
all: $(PTHREAD_BINS) $(INCLUDE_BINS) $(STANDARD_BINS)
2015-08-05 17:22:42 +02:00
2016-09-09 18:31:53 +02:00
$(PTHREAD_BINS): %: %.c
gcc -o $@ $< -lpthread
2015-08-05 17:22:42 +02:00
2016-09-09 18:31:53 +02:00
$(STANDARD_BINS): %: %.c
gcc -o $@ $<
2015-08-05 17:22:42 +02:00
2016-09-09 18:31:53 +02:00
$(INCLUDE_BINS): %: %.c
gcc -o $@ $< -I../include