Skip to content

Commit b383ecf

Browse files
author
descender
committed
* tools/Makefile.am, examples/Makefile.am: Don't use @var@ but $(VAR).
1 parent 2567c7a commit b383ecf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

libvisual/examples/Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ DEFS = @DEFS@
44

55
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/examples -I$(top_builddir)
66

7-
AM_CFLAGS = @SDL_CFLAGS@ @VISUAL_CFLAGS@
7+
AM_CFLAGS = $(SDL_CFLAGS) $(VISUAL_CFLAGS)
88

99
bin_PROGRAMS = $(EXAMPLES)
1010

1111
EXTRA_PROGRAMS = simplesdl morphsdl
1212

13-
simplesdl_LDADD = @SDL_LIBS@ @VISUAL_LIBS@
14-
morphsdl_LDADD = @SDL_LIBS@ @VISUAL_LIBS@
13+
simplesdl_LDADD = $(SDL_LIBS) $(VISUAL_LIBS)
14+
morphsdl_LDADD = $(SDL_LIBS) $(VISUAL_LIBS)
1515

1616
simplesdl_SOURCES = simplesdl.c
1717

libvisual/tools/Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ DEFS = @DEFS@
44

55
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/examples
66

7-
AM_CFLAGS = @VISUAL_CFLAGS@
7+
AM_CFLAGS = $(VISUAL_CFLAGS)
88

9-
lv_inspect_LDADD = @VISUAL_LIBS@
9+
lv_inspect_LDADD = $(VISUAL_LIBS)
1010

1111
bin_PROGRAMS = lv-inspect
1212

0 commit comments

Comments
 (0)