mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
use $(CC) instead of gcc
This commit is contained in:
parent
adf4e40256
commit
0e09153b1f
@ -1,22 +1,22 @@
|
|||||||
all: cit citin flashprog modt ddtest setmod ddflash setmod2
|
all: cit citin flashprog modt ddtest setmod ddflash setmod2
|
||||||
|
|
||||||
cit: cit.c
|
cit: cit.c
|
||||||
gcc -o cit cit.c -lpthread
|
$(CC) -o cit cit.c -lpthread
|
||||||
|
|
||||||
modt: modt.c
|
modt: modt.c
|
||||||
gcc -o modt modt.c -lpthread
|
$(CC) -o modt modt.c -lpthread
|
||||||
|
|
||||||
setmod: setmod.c
|
setmod: setmod.c
|
||||||
gcc -o setmod setmod.c -I../include/
|
$(CC) -o setmod setmod.c -I../include/
|
||||||
|
|
||||||
setmod2: setmod2.c
|
setmod2: setmod2.c
|
||||||
gcc -o setmod2 setmod2.c -I../include/
|
$(CC) -o setmod2 setmod2.c -I../include/
|
||||||
|
|
||||||
flashprog: flashprog.c
|
flashprog: flashprog.c
|
||||||
gcc -o flashprog flashprog.c
|
$(CC) -o flashprog flashprog.c
|
||||||
|
|
||||||
ddtest: ddtest.c
|
ddtest: ddtest.c
|
||||||
gcc -o ddtest ddtest.c
|
$(CC) -o ddtest ddtest.c
|
||||||
|
|
||||||
ddflash: ddflash.c
|
ddflash: ddflash.c
|
||||||
gcc -o ddflash ddflash.c
|
$(CC) -o ddflash ddflash.c
|
||||||
|
Loading…
Reference in New Issue
Block a user