mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-01 21:33:02 +02:00
Everything (!) potentially shared with other sysrepo plugins/daemons and helper functions (not yet in libite) that can be used by other daemons have been relocated to libsrx. Fix #116 Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
20 lines
313 B
Makefile
20 lines
313 B
Makefile
CFLAGS += -Wall -Wextra -Werror
|
|
LDLIBS += -lsysrepo -lev -lyang -ljansson -lite -lsrx
|
|
|
|
TARGET = statd
|
|
SRC = statd.c
|
|
|
|
all: $(TARGET)
|
|
|
|
$(TARGET): $(SRC)
|
|
$(CC) $(CPPFLAGS) $(LDLIBS) $(CFLAGS) -o $(TARGET) $(SRC)
|
|
|
|
clean:
|
|
-rm statd
|
|
|
|
distclean: clean
|
|
-rm *~
|
|
|
|
install:
|
|
install -D statd $(DESTDIR)/sbin/
|