2014-04-11 14:17:11 +02:00
|
|
|
# This is the makefile in kolibrios/contrib/network/netsurf/libcss
|
|
|
|
# Need to add recursive calling to all the subdirectories. For now, use the generated .a file for testing.
|
2013-06-01 19:14:14 +02:00
|
|
|
|
2014-04-11 14:17:11 +02:00
|
|
|
OUTFILE := $(CURDIR)/libcss.a
|
2013-06-01 19:14:14 +02:00
|
|
|
|
2014-04-11 14:17:11 +02:00
|
|
|
OBJS = $(wildcard src/libo.o)
|
|
|
|
OBJS := $(OBJS) $(wildcard src/charset/libo.o)
|
|
|
|
OBJS := $(OBJS) $(wildcard src/lex/libo.o)
|
|
|
|
OBJS := $(OBJS) $(wildcard src/parse/properties/libo.o)
|
|
|
|
OBJS := $(OBJS) $(wildcard src/parse/libo.o)
|
|
|
|
OBJS := $(OBJS) $(wildcard src/select/properties/libo.o)
|
|
|
|
OBJS := $(OBJS) $(wildcard src/select/libo.o)
|
|
|
|
OBJS := $(OBJS) $(wildcard src/utils/libo.o)
|
2013-06-01 19:14:14 +02:00
|
|
|
|
2014-04-11 14:17:11 +02:00
|
|
|
include $(MENUETDEV)/makefiles/Makefile_for_lib
|