Skip to content

Commit

Permalink
* clean up the build system a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
nomis52 committed Feb 27, 2013
1 parent e47ce20 commit 713efee
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
12 changes: 6 additions & 6 deletions artnet/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

INCLUDES = -I$(top_builddir) -I$(top_srcdir)
AM_CFLAGS = -Wall -Werror -Wformat -W
AM_CFLAGS = -I$(top_builddir) -I$(top_srcdir) -Wall -Werror -Wformat -W

EXTRA_DIST = tod.h misc.h

pkginclude_HEADERS = artnet.h packets.h common.h
pkgincludedir = $(includedir)/artnet

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

EXTRA_DIST = tod.h misc.h

pkginclude_HEADERS = artnet.h packets.h common.h
pkgincludedir = $(includedir)/artnet
7 changes: 5 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.57)
AC_INIT(configure.ac)
AC_INIT(libartnet, [1.1.2])
AC_CONFIG_SRCDIR([configure.ac])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_HEADERS(config.h)
AM_INIT_AUTOMAKE(libartnet, 1.1.1)
AC_CONFIG_MACRO_DIR([config])
AM_INIT_AUTOMAKE

# Checks for programs.
AC_PROG_CC
Expand Down

0 comments on commit 713efee

Please sign in to comment.