openpkg/mutex.mk

Fri, 12 Oct 2012 21:24:48 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 12 Oct 2012 21:24:48 +0200
changeset 735
793545fe0f53
permissions
-rw-r--r--

Introduce base themes required for correct display of dependent subthemes.
Additioanally integrate a few good looking (although heavy) ported themes.

     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