mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
- Move config.h and util.h from libyasm (and installed libyasm) to top level. - Move yasm_* functions from util.h to coretype.h. - Remove a number of autoconf-related YASM_*_INTERNAL options from libyasm.h. - Rename YASM_INTERNAL to YASM_LIB_INTERNAL; it now actually means what the comment describes: enables definitions that violate the yasm_* namespace. While we're at it, no longer define YASM_LIB_INTERNAL from yasm frontend, so it's closer to what a real typical libyasm-using application would look like. svn path=/trunk/yasm/; revision=944
67 lines
1.4 KiB
Makefile
67 lines
1.4 KiB
Makefile
# $IdPath: yasm/Makefile.am,v 1.48 2003/05/03 06:26:15 peter Exp $
|
|
|
|
SUBDIRS = libltdl m4 po .
|
|
|
|
AM_YFLAGS = -d
|
|
AM_CFLAGS = @MORE_CFLAGS@
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/check \
|
|
-DYASM_MODULEDIR="\"${pkglibdir}\"" \
|
|
@INCLTDL@
|
|
|
|
bin_PROGRAMS =
|
|
TESTS =
|
|
noinst_PROGRAMS =
|
|
|
|
include_HEADERS = libyasm.h
|
|
|
|
noinst_HEADERS = util.h
|
|
|
|
lib_LTLIBRARIES =
|
|
pkglib_LTLIBRARIES =
|
|
|
|
YASM_MODULES =
|
|
|
|
BUILT_SOURCES =
|
|
# configure.lineno doesn't clean up after itself?
|
|
CLEANFILES = configure.lineno
|
|
EXTRA_DIST = config/config.rpath \
|
|
check/Makefile.inc \
|
|
tools/Makefile.inc \
|
|
libyasm/Makefile.inc \
|
|
modules/Makefile.inc \
|
|
frontends/Makefile.inc
|
|
|
|
include check/Makefile.inc
|
|
include tools/Makefile.inc
|
|
include libyasm/Makefile.inc
|
|
include modules/Makefile.inc
|
|
include frontends/Makefile.inc
|
|
|
|
EXTRA_DIST += \
|
|
out_test.sh \
|
|
test_hd.pl \
|
|
COPYING.LIB-2.0 \
|
|
splint.sh \
|
|
Mkfiles/Makefile.flat \
|
|
Mkfiles/Makefile.dj Mkfiles/dj/libyasm/config.h \
|
|
Mkfiles/vc/yasm-module.c \
|
|
Mkfiles/vc/yasm.dep \
|
|
Mkfiles/vc/yasm.dsp \
|
|
Mkfiles/vc/yasm.dsw \
|
|
Mkfiles/vc/yasm.mak \
|
|
Mkfiles/vc/libyasm/config.h \
|
|
Mkfiles/vc/libyasm/libyasm.dep \
|
|
Mkfiles/vc/libyasm/libyasm.dsp \
|
|
Mkfiles/vc/libyasm/libyasm.mak \
|
|
Mkfiles/vc/modules/modules.dep \
|
|
Mkfiles/vc/modules/modules.dsp \
|
|
Mkfiles/vc/modules/modules.mak
|
|
|
|
# Until this gets fixed in automake
|
|
DISTCLEANFILES = libyasm/stamp-h libyasm/stamp-h[0-9]*
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
distclean-local:
|
|
-rm -rf results
|