Thu, 09 Aug 2012 00:41:14 +0200
Introduce a lot of changes to correct source and build logic including:
Correct URLs, reorder existing patch hunks, update vendor version and
patch accordingly, integrate optional SQLite storage, modernize package
(remove boilerplate RPM logic), correct preprocessor definitions as
NIS+was removed from Solaris 11, use parallel make, improve configuration
spacing and whitespace, and remove now uneeded postfix-script(1) and
post-install(1) relocation.
michael@428 | 1 | |
michael@428 | 2 | CC = cc |
michael@428 | 3 | CFLAGS = |
michael@428 | 4 | CPPFLAGS = |
michael@428 | 5 | LDFLAGS = |
michael@428 | 6 | LIBS = -lpopt |
michael@428 | 7 | |
michael@428 | 8 | MUTEX_DOT_C = mutex.c |
michael@428 | 9 | |
michael@428 | 10 | all: mutex |
michael@428 | 11 | |
michael@428 | 12 | mutex: $(MUTEX_DOT_C) |
michael@428 | 13 | $(CC) $(CFLAGS) $(CPPFLAGS) -o mutex $(MUTEX_DOT_C) $(LDFLAGS) $(LIBS) |
michael@428 | 14 | |
michael@428 | 15 | clean: |
michael@428 | 16 | -rm -f mutex |
michael@428 | 17 |