openpkg/mutex.mk

Thu, 04 Oct 2012 20:30:05 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 04 Oct 2012 20:30:05 +0200
changeset 715
c10fb90893b9
permissions
-rw-r--r--

Correct out of date build configuration, porting to Solaris 11 network
link infrastructure and new libpcap logic. This additionally allows for
device drivers in subdirectories of /dev. Correct packaged nmap
personalities and signatures to work out of the box. Finally, hack
arpd logic to properly close sockets and quit on TERM by repeating
signaling in the run command script. Sadly, all this fails to correct
the run time behaviour of honeyd which fails to bind to the IP layer.

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

mercurial