mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
25 lines
374 B
Makefile
25 lines
374 B
Makefile
APPS = cit citin flashprog modt ddtest setmod ddflash
|
|
|
|
all: $(APPS)
|
|
|
|
cit: cit.c
|
|
gcc -o cit cit.c -lpthread
|
|
|
|
modt: modt.c
|
|
gcc -o modt modt.c -lpthread
|
|
|
|
setmod: setmod.c
|
|
gcc -o setmod setmod.c -I../include/
|
|
|
|
flashprog: flashprog.c
|
|
gcc -o flashprog flashprog.c
|
|
|
|
ddtest: ddtest.c
|
|
gcc -o ddtest ddtest.c
|
|
|
|
ddflash: ddflash.c
|
|
gcc -o ddflash ddflash.c
|
|
|
|
clean:
|
|
rm -rf $(APPS)
|