Skip to content

Commit

Permalink
fix .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
yersinia committed Mar 19, 2012
2 parents 3d3980b + 4c2a9e2 commit b0d2ae5
Show file tree
Hide file tree
Showing 35 changed files with 1,914 additions and 1,351 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ build-aux
cat-id-tbl.c
.ccache
clang
lib
m4
config.cache
config.guess
config.h
Expand Down
File renamed without changes.
File renamed without changes.
21 changes: 0 additions & 21 deletions Makefile

This file was deleted.

86 changes: 86 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
# Makefile for p03f

ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -I. -I$(top_srcdir) -I$(top_builddir)/lib -I$(top_srcdir)/lib -I/usr/local/include/ -I/opt/local/include/
AM_CFLAGS = $(P0F_CFLAGS)
AM_LDFLAGS = $(P0F_LDFLAGS) -L/usr/local/lib/ -L/opt/local/lib


## begin configmake

# Retrieve values of the variables through 'configure' followed by
# 'make', not directly through 'configure', so that a user who
# sets some of these variables consistently on the 'make' command
# line gets correct results.
#
# One advantage of this approach, compared to the classical
# approach of adding -DLIBDIR=\"$(libdir)\" etc. to AM_CPPFLAGS,
# is that it protects against the use of undefined variables.
# If, say, $(libdir) is not set in the Makefile, LIBDIR is not
# defined by this module, and code using LIBDIR gives a
# compilation error.
#
# Another advantage is that 'make' output is shorter.
#
# Listed in the same order as the GNU makefile conventions.
# The Automake-defined pkg* macros are appended, in the order
# listed in the Automake 1.10a+ documentation.
configmake.h: Makefile
$(AM_V_GEN)rm -f $@-t && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
echo '#define PREFIX "$(prefix)"'; \
echo '#define EXEC_PREFIX "$(exec_prefix)"'; \
echo '#define BINDIR "$(bindir)"'; \
echo '#define SBINDIR "$(sbindir)"'; \
echo '#define LIBEXECDIR "$(libexecdir)"'; \
echo '#define DATAROOTDIR "$(datarootdir)"'; \
echo '#define DATADIR "$(datadir)"'; \
echo '#define SYSCONFDIR "$(sysconfdir)"'; \
echo '#define SHAREDSTATEDIR "$(sharedstatedir)"'; \
echo '#define LOCALSTATEDIR "$(localstatedir)"'; \
echo '#define INCLUDEDIR "$(includedir)"'; \
echo '#define OLDINCLUDEDIR "$(oldincludedir)"'; \
echo '#define DOCDIR "$(docdir)"'; \
echo '#define INFODIR "$(infodir)"'; \
echo '#define HTMLDIR "$(htmldir)"'; \
echo '#define DVIDIR "$(dvidir)"'; \
echo '#define PDFDIR "$(pdfdir)"'; \
echo '#define PSDIR "$(psdir)"'; \
echo '#define LIBDIR "$(libdir)"'; \
echo '#define LISPDIR "$(lispdir)"'; \
echo '#define LOCALEDIR "$(localedir)"'; \
echo '#define MANDIR "$(mandir)"'; \
echo '#define MANEXT "$(manext)"'; \
echo '#define PKGDATADIR "$(pkgdatadir)"'; \
echo '#define P0FDATADIR "$(pkgdatadir)"'; \
echo '#define PKGINCLUDEDIR "$(pkgincludedir)"'; \
echo '#define PKGLIBDIR "$(pkglibdir)"'; \
echo '#define PKGLIBEXECDIR "$(pkglibexecdir)"'; \
} | sed '/""/d' > $@-t && \
if test -f $@ && cmp $@-t $@ > /dev/null; then \
rm -f $@-t; \
touch $@; \
else \
rm -f $@; mv $@-t $@; \
fi

BUILT_SOURCES = configmake.h
CLEANFILES = configmake.h configmake.h-t

## end configmake

SUBDIRS = lib tools

bin_PROGRAMS = p0f
p0f_SOURCES = api.c fp_http.c fp_mtu.c fp_tcp.c p0f.c process.c readfp.c
noinst_HEADERS = alloc-inl.h api.h debug.h fp_http.h fp_mtu.h fp_tcp.h hash.h languages.h p0f.h process.h readfp.h system.h tcp.h types.h
LDADD = $(top_builddir)/lib/libgnu.a

p0fdir = $(pkgdatadir)
dist_p0f_DATA = p0f.fp

EXTRA_DISTS = autogen.sh README-prereq m4/gnulib-cache.m4

dist_doc_DATA = ChangeLog COPYING README TODO docs/existential-notes.txt docs/extra-sigs.txt
#dist_man_MANS = p03f.3

1 change: 0 additions & 1 deletion README

This file was deleted.

Loading

0 comments on commit b0d2ae5

Please sign in to comment.