aboutsummaryrefslogtreecommitdiffstats
path: root/build_tools
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-25 13:45:43 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-25 13:45:43 +0000
commitccdab0c0a27b4231edb08ef77385d592687b48b1 (patch)
tree9e01c6525017868552d66f129042036397edff8b /build_tools
parent43ec1d9cd83a2d60b48dfcc660ad61a8956116ce (diff)
don't list strcompat.o as a dependency in the build_tools Makefile. It is
already listed in the target in the main Makefile. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@22388 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'build_tools')
-rw-r--r--build_tools/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_tools/Makefile b/build_tools/Makefile
index 0825cd6cc..b5336e30c 100644
--- a/build_tools/Makefile
+++ b/build_tools/Makefile
@@ -1,4 +1,4 @@
-MENUSELECT_OBJS=menuselect.o menuselect_curses.o ../strcompat.o
+MENUSELECT_OBJS=menuselect.o menuselect_curses.o
MENUSELECT_CFLAGS=-g -c -D_GNU_SOURCE -I../ -I../include/
MENUSELECT_LIBS=../mxml/libmxml.a
@@ -11,7 +11,7 @@ else
endif
menuselect: $(MENUSELECT_OBJS)
- $(CC) -g -o $@ $(MENUSELECT_OBJS) $(MENUSELECT_LIBS)
+ $(CC) -g -o $@ ../strcompat.o $(MENUSELECT_OBJS) $(MENUSELECT_LIBS)
menuselect.o: menuselect.c menuselect.h
$(CC) -o $@ $(MENUSELECT_CFLAGS) $<