mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-03-14 21:10:11 +01:00
17 lines
386 B
Makefile
17 lines
386 B
Makefile
CC = gcc
|
|
CFLAGS = -g -Wall
|
|
LOCLIBS =
|
|
LIBS = -luci -lubus -lubox -lpthread
|
|
OBJS = questd.o dumper.o port.o arping.o usb.o ndisc.o dslstats.o tools.o igmp.o
|
|
SRCS = questd.c dumper.c port.c arping.c usb.c ndisc.c dslstats.c tools.c igmp.c
|
|
LIBSRCS =
|
|
ISRCS = questd.h
|
|
|
|
all: questd
|
|
|
|
questd: ${OBJS}
|
|
${CC} ${LDFLAGS} ${LIBSRCS} -o questd ${OBJS} ${LIBS}
|
|
|
|
clean:
|
|
rm -f questd *.o
|
|
|