2017-10-12 14:22:38 +02:00
|
|
|
all: cit citin flashprog modt ddtest setmod ddflash setmod2 pls setmod3
|
2015-08-05 17:22:42 +02:00
|
|
|
|
|
|
|
cit: cit.c
|
2017-03-10 12:28:31 +01:00
|
|
|
$(CC) -o cit cit.c -lpthread
|
2015-08-05 17:22:42 +02:00
|
|
|
|
|
|
|
modt: modt.c
|
2017-03-10 12:28:31 +01:00
|
|
|
$(CC) -o modt modt.c -lpthread
|
2015-08-05 17:22:42 +02:00
|
|
|
|
|
|
|
setmod: setmod.c
|
2017-03-10 12:28:31 +01:00
|
|
|
$(CC) -o setmod setmod.c -I../include/
|
2015-08-05 17:22:42 +02:00
|
|
|
|
2016-09-02 17:37:15 +02:00
|
|
|
setmod2: setmod2.c
|
2017-03-10 12:28:31 +01:00
|
|
|
$(CC) -o setmod2 setmod2.c -I../include/
|
2016-09-02 17:37:15 +02:00
|
|
|
|
2017-10-12 14:22:38 +02:00
|
|
|
setmod3: setmod3.c
|
|
|
|
$(CC) -o setmod3 setmod3.c -I../include/
|
|
|
|
|
2018-04-07 20:16:32 +02:00
|
|
|
%.o: %.c
|
|
|
|
$(CC) $(CFLAGS) -o $@ $<
|
2015-08-05 17:22:42 +02:00
|
|
|
|