diff --git a/src/cookies/Makefile b/src/cookies/Makefile new file mode 100644 index 000000000..63e048104 --- /dev/null +++ b/src/cookies/Makefile @@ -0,0 +1,12 @@ +path_to_top=../.. +include $(path_to_top)/Makefile.config + +OBJS = cookies.o dialogs.o parser.o + +all-l: libcookies.a +libcookies.a: $(OBJS) + +parsetst: parser.o parsetst.o + $(call cmd,link) -L../util/libutil.a + +include $(path_to_top)/Makefile.lib diff --git a/src/cookies/Makefile.am b/src/cookies/Makefile.am deleted file mode 100644 index b3ed53e83..000000000 --- a/src/cookies/Makefile.am +++ /dev/null @@ -1,24 +0,0 @@ -## Process this file with automake to produce Makefile.in -## $Id: Makefile.am,v 1.13 2004/01/03 01:11:57 pasky Exp $ - -include $(top_srcdir)/Makefile.base - -noinst_LIBRARIES = libcookies.a -libcookies_a_SOURCES = \ - cookies.c \ - cookies.h \ - dialogs.c \ - dialogs.h \ - parser.c \ - parser.h - -TESTS = parsetst - -EXTRA_PROGRAMS = parsetst - -parsetst_SOURCES = \ - parser.h \ - parser.c \ - parsetst.c -parsetst_DEPENDENCIES = testutils -parsetst_LDADD = $(top_builddir)/src/util/libutil.a