8 lines
170 B
Makefile
8 lines
170 B
Makefile
# Example Makefile for a stand-alone program using libucw
|
|
|
|
CFLAGS:=$(shell pkg-config --cflags libucw)
|
|
LDLIBS:=$(shell pkg-config --libs libucw)
|
|
|
|
all: test
|
|
|
|
test: test.c
|