Skip to content

Commit 713efee

Browse files
committed
* clean up the build system a bit
1 parent e47ce20 commit 713efee

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

artnet/Makefile.am

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11

2-
INCLUDES = -I$(top_builddir) -I$(top_srcdir)
3-
AM_CFLAGS = -Wall -Werror -Wformat -W
2+
AM_CFLAGS = -I$(top_builddir) -I$(top_srcdir) -Wall -Werror -Wformat -W
3+
4+
EXTRA_DIST = tod.h misc.h
5+
6+
pkginclude_HEADERS = artnet.h packets.h common.h
7+
pkgincludedir = $(includedir)/artnet
48

59
lib_LTLIBRARIES = libartnet.la
610
libartnet_la_SOURCES = artnet.c private.h misc.c network.c receive.c \
@@ -11,7 +15,3 @@ if USING_WIN32
1115
libartnet_la_LDFLAGS += -no-undefined -liphlpapi -lnetapi32 -lws2_32 -ldpnet
1216
endif
1317

14-
EXTRA_DIST = tod.h misc.h
15-
16-
pkginclude_HEADERS = artnet.h packets.h common.h
17-
pkgincludedir = $(includedir)/artnet

configure.ac

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ(2.57)
5-
AC_INIT(configure.ac)
5+
AC_INIT(libartnet, [1.1.2])
6+
AC_CONFIG_SRCDIR([configure.ac])
7+
AC_CONFIG_AUX_DIR(config)
68
AC_CONFIG_HEADERS(config.h)
7-
AM_INIT_AUTOMAKE(libartnet, 1.1.1)
9+
AC_CONFIG_MACRO_DIR([config])
10+
AM_INIT_AUTOMAKE
811

912
# Checks for programs.
1013
AC_PROG_CC

0 commit comments

Comments
 (0)