openpkg/mutex.mk

Tue, 28 Aug 2012 19:00:20 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 28 Aug 2012 19:00:20 +0200
changeset 626
03d66ab4c7ca
permissions
-rw-r--r--

Update version, modernize packaging, include fallback pid_is_* on Solaris,
remove defective KVM integration logic, and replace Burrows–Wheeler source
compression with LZMA.

     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