forked from KolibriOS/kolibrios
90d2d687bb
git-svn-id: svn://kolibrios.org@4821 a494cfbc-eb01-0410-851d-a64ba20cac60
15 lines
515 B
Makefile
15 lines
515 B
Makefile
|
|
#include $(NSBUILD)/Makefile.subdir
|
|
# This is the makefile in kolibrios/contrib/network/netsurf/libparserutils/src
|
|
# Need to add recursive calling to all the subdirectories. For now, use the generated .a file for testing.
|
|
|
|
OUTFILE := $(CURDIR)/libparseutils.a
|
|
OBJS = $(wildcard charset/*.o)
|
|
OBJS := $(OBJS) $(wildcard charset/codecs/*.o)
|
|
OBJS := $(OBJS) $(wildcard charset/encodings/*.o)
|
|
OBJS := $(OBJS) $(wildcard input/*.o)
|
|
OBJS := $(OBJS) $(wildcard utils/*.o)
|
|
|
|
include $(MENUETDEV)/makefiles/Makefile_for_lib
|
|
|