-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.am
39 lines (33 loc) · 1.07 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
###########################################################################
##
## File: ./Makefile.am
## Versions: $Id: Makefile.am,v 1.16 2010/06/14 12:50:57 j-nijhof Exp $
## Created: 2002/06/14
##
###########################################################################
##
## run automake to generate a Makefile.in
## Makefile.am \
## configure.ac > Makefile.in
## aclocal.m4 /
##
ACLOCAL_AMFLAGS= -I config
bin_PROGRAMS = nfqueue-test
nfqueue_test_SOURCES = nfqueue-test.c
install-data-hook:
# @echo === install-data-hook ===
-rm $(DESTDIR)/$(libdir)/$(module_LTLIBRARIES)
help:
@echo ""
@echo "make - compile sources to a shared library module"
@echo "make all - same as above"
@echo "make install - copy module and docs to destination"
@echo "make clean - cleans out most useless files"
@echo "make disthelp - extra help for developers"
@echo ""
disthelp:
@echo ""
@echo "make dist - creates distribution tarballs"
@echo "make distclean - cleans & removes most made files"
@echo "make maintainer-clean - cleans even more"
@echo ""