mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
0f6d4310ad
Thu Sep 15 15:57:07 CEST 2005. The previous history can be added to this by grafting.
17 lines
744 B
Makefile
17 lines
744 B
Makefile
## Base file for Makefile.am files in the tree, contains common stuff.
|
|
## $Id: Makefile.base,v 1.7 2004/04/29 14:17:12 jonas Exp $
|
|
|
|
INCLUDES = -I$(top_builddir) -I$(top_srcdir)/src
|
|
|
|
# The author of automake should be shot, quartered and forced to code in COBOL
|
|
# for the rest of his days for the **** he designed - anything forcing me to
|
|
# -I. -I$(srcdir) regardless if I want or not is just idiotic. Another totally
|
|
# dumb thing is that you can't just use @CONFIG_INCLUDE_SPEC@ in your own .am.
|
|
|
|
COMPILE = $(CC) @DEFS@ $(INCLUDES) $(AM_CFLAGS) $(CFLAGS)
|
|
|
|
# Rule for getting test dependencies right. This is a workaround since
|
|
# automake doesn't support defining subdirs sources.
|
|
testutils:
|
|
make -C $(top_builddir)/src/util CPPFLAGS="-DDEBUG"
|