Skip to content
Snippets Groups Projects
Commit e7dfb41c authored by Russell Bryant's avatar Russell Bryant
Browse files

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: https://origsvn.digium.com/svn/asterisk/trunk@22388 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 68835cd4
Branches
Tags
No related merge requests found
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) $<
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment