Changeset 240fe3 in git for omalloc


Ignore:
Timestamp:
Jan 2, 2012, 9:56:12 AM (12 years ago)
Author:
Jan Engelhardt <jengelh@…>
Branches:
(u'spielwiese', '73c62e0961bcfc8f1a00420b41eec2ea3c0ef6e9')
Children:
7d62506924687f1914af2e044e72b7886ce66aa3
Parents:
0560897fe3dd0b7d8eae37d99a3154ebf84cb0cc
git-author:
Jan Engelhardt <jengelh@inai.de>2012-01-02 09:56:12+01:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2012-12-06 20:20:39+01:00
Message:
build: use simpler relative path specifications

Cosmetic only. It makes the compile lines somewhat shorter.

As for commands, builddir is always ".", so there is no need to use
${abs_builddir} or ${builddir} AFAICS.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • omalloc/Makefile.am

    r056089 r240fe3  
    3333EXTRA_DIST = omalloc.c omtTestAlloc.c omtTest.h omMmap.c
    3434
    35 AM_CPPFLAGS =-I${abs_top_srcdir}/.. -I${abs_top_builddir}/..
     35AM_CPPFLAGS =-I${top_srcdir}/.. -I${top_builddir}/..
    3636
    3737libomalloc_la_SOURCES=$(SOURCES) $(noinst_HEADERS)
     
    6767## Test program
    6868##
    69 # AM_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc
     69# AM_LDFLAGS = -L${top_builddir}/omalloc -L${top_builddir}/../omalloc
    7070
    7171
     
    9292omtTest_s_g_CFLAGS  = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE}
    9393omtTest_s_g_LDADD   = libomalloc_g.la
    94 omtTest_s_g_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc -static
     94omtTest_s_g_LDFLAGS = -L${top_builddir}/omalloc -L${top_builddir}/../omalloc -static
    9595
    9696omtTest_s_m_CPPFLAGS= ${AM_CPPFLAGS} -DOM_TEST_MALLOC  -DHAVE_CONFIG_H
    9797omtTest_s_m_SOURCES = $(OMTTESTSSOURCES)
    9898omtTest_s_m_LDADD   = libomalloc_g.la
    99 omtTest_s_m_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc -static
     99omtTest_s_m_LDFLAGS = -L${top_builddir}/omalloc -L${top_builddir}/../omalloc -static
    100100
    101101omtTest_s_r_SOURCES = $(OMTTESTSSOURCES)
     
    103103omtTest_s_r_CFLAGS  = -O3 ${PIPE}
    104104omtTest_s_r_LDADD   = libomalloc.la
    105 omtTest_s_r_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc -static
     105omtTest_s_r_LDFLAGS = -L${top_builddir}/omalloc -L${top_builddir}/../omalloc -static
    106106
    107107
     
    111111omtTest_d_g_CFLAGS  = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE}
    112112omtTest_d_g_LDADD   = libomalloc_g.la
    113 omtTest_d_g_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc
     113omtTest_d_g_LDFLAGS = -L${top_builddir}/omalloc -L${top_builddir}/../omalloc
    114114
    115115omtTest_d_m_CPPFLAGS= ${AM_CPPFLAGS} -DOM_TEST_MALLOC  -DHAVE_CONFIG_H
    116116omtTest_d_m_SOURCES = $(OMTTESTSSOURCES)
    117117omtTest_d_m_LDADD   = libomalloc_g.la
    118 omtTest_d_m_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc
     118omtTest_d_m_LDFLAGS = -L${top_builddir}/omalloc -L${top_builddir}/../omalloc
    119119
    120120omtTest_d_r_SOURCES = $(OMTTESTSSOURCES)
     
    122122omtTest_d_r_CFLAGS  = -O3 ${PIPE}
    123123omtTest_d_r_LDADD   = libomalloc.la
    124 omtTest_d_r_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc
     124omtTest_d_r_LDFLAGS = -L${top_builddir}/omalloc -L${top_builddir}/../omalloc
Note: See TracChangeset for help on using the changeset viewer.