1## Process this file with automake to produce Makefile.in
2# Makefile for the UUID library and tools
3
4include $(top_srcdir)/include.mk
5
6AM_CPPFLAGS += -D_POSIX_C_SOURCE
7
8noinst_LTLIBRARIES = libuuid.la
9
10libuuid_la_SOURCES = uuid.c uuidsys.c get_802_addr.c
11
12noinst_HEADERS= uuid_i.h
13
14# Build the UUID generation tool
15bin_PROGRAMS = uuid
16uuid_SOURCES = uuidtool.c
17uuid_LDADD = ./libuuid.la $(LIB_socket)
18
19