2019-11-05 12:43:55 +05:30
|
|
|
# Simple Makefile for syslogp() example application
|
2019-11-08 18:13:16 +05:30
|
|
|
# This is free and unencumbered software released into the public domain.
|
|
|
|
|
2019-11-05 12:43:55 +05:30
|
|
|
EXEC := example
|
|
|
|
OBJS := example.o
|
|
|
|
CFLAGS := `pkg-config --cflags libsyslog`
|
|
|
|
LDLIBS := `pkg-config --libs --static libsyslog`
|
|
|
|
|
|
|
|
all: $(EXEC)
|
|
|
|
|
|
|
|
$(EXEC): $(OBJS)
|