1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

Converted cookies building to ELBuilds

This commit is contained in:
Petr Baudis 2005-09-16 04:53:54 +02:00
parent 13ce7f6f81
commit aec63f5c88
2 changed files with 12 additions and 24 deletions

12
src/cookies/Makefile Normal file
View File

@ -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

View File

@ -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