sysklogd/example/example.mk
Joachim Nilsson 625a0d4abc Relicense example code/readme/makefile as public domain
Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
2019-11-08 13:43:37 +01:00

12 lines
296 B
Makefile

# Simple Makefile for syslogp() example application
# This is free and unencumbered software released into the public domain.
EXEC := example
OBJS := example.o
CFLAGS := `pkg-config --cflags libsyslog`
LDLIBS := `pkg-config --libs --static libsyslog`
all: $(EXEC)
$(EXEC): $(OBJS)