summaryrefslogtreecommitdiff
path: root/tools/lemon
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lemon')
-rw-r--r--tools/lemon/Makefile.am18
1 files changed, 14 insertions, 4 deletions
diff --git a/tools/lemon/Makefile.am b/tools/lemon/Makefile.am
index 0f2be55d53..0cafe51167 100644
--- a/tools/lemon/Makefile.am
+++ b/tools/lemon/Makefile.am
@@ -23,21 +23,32 @@
# is an archive library, any executable linking against libwireshark will
# also need to link against libftypes.
+CC = $(CC_FOR_BUILD)
+
if HAVE_WARNINGS_AS_ERRORS
CFLAGS_FOR_BUILD += -Werror
endif
+LIBS =
+
noinst_PROGRAMS = lemon
+lemon_SOURCES = lemon.c
+
+lemon_CPPFLAGS =
+
+lemon_CFLAGS = $(CFLAGS_FOR_BUILD)
+
+lemon_LDFLAGS = $(LDFLAGS_FOR_BUILD)
+
+lemon_LDADD =
+
CLEANFILES = \
*~
MAINTAINERCLEANFILES = \
Makefile.in
-lemon$(EXEEXT): lemon.c
- $(CC_FOR_BUILD) -I$(top_builddir) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ $?
-
EXTRA_DIST = \
cppmagic.h \
lemon.html \
@@ -47,4 +58,3 @@ EXTRA_DIST = \
Makefile.nmake \
README \
CMakeLists.txt
-