openpkg/mutex.mk

Sat, 04 Aug 2012 14:16:14 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 04 Aug 2012 14:16:14 +0200
changeset 472
0746a003fc03
permissions
-rw-r--r--

All other packages force 32-bit building and produce binaries so
accommodate OpenPKG 32-bit least common denominator policy by
neutralizing changes made in commit 434.

     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