openpkg/mutex.mk

Thu, 04 Oct 2012 20:24:28 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 04 Oct 2012 20:24:28 +0200
changeset 712
bf4f2bc90467
permissions
-rw-r--r--

Update to new vendor version and correct context handling in voicemail.
Context correction is needed to enable leaving a voicemail at the
VoicemailMain prompt (press 5) when not specifying a 'default' context
in the voicemail configuration.

     2 CC             = cc
     3 CFLAGS         =
     4 CPPFLAGS       =
     5 LDFLAGS        =
     6 LIBS           = -lpopt
     8 MUTEX_DOT_C    = mutex.c
    10 all: mutex
    12 mutex: $(MUTEX_DOT_C)
    13 	$(CC) $(CFLAGS) $(CPPFLAGS) -o mutex $(MUTEX_DOT_C) $(LDFLAGS) $(LIBS)
    15 clean:
    16 	-rm -f mutex

mercurial