diff --git a/apps/Makefile b/apps/Makefile index 31a1ed5..44ddd15 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -1,4 +1,4 @@ -all: cit citin flashprog modt ddtest setmod ddflash setmod2 pls setmod3 +all: cit citin flashprog modt ddtest setmod ddflash setmod2 pls setmod3 modconfig cit: cit.c $(CC) -o cit cit.c -lpthread @@ -15,6 +15,9 @@ setmod2: setmod2.c setmod3: setmod3.c $(CC) -o setmod3 setmod3.c -I../include/ +modconfig: modconfig.c + $(CC) -o modconfig modconfig.c -I../include/ + %.o: %.c $(CC) $(CFLAGS) -o $@ $<