Subversion Repositories Kolibri OS

Rev

Rev 4364 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4821 ashmew2 1
# This is the makefile in kolibrios/contrib/network/netsurf/libhubbub
2
# Need to add recursive calling to all the subdirectories. For now, use the generated .a file for testing.
3584 sourcerer 3
 
4821 ashmew2 4
OUTFILE := $(CURDIR)/libhubbub.a
3584 sourcerer 5
 
4821 ashmew2 6
OBJS = $(wildcard src/*.o)
7
OBJS := $(OBJS) $(wildcard src/charset/*.o)
8
OBJS := $(OBJS) $(wildcard src/tokeniser/*.o)
9
OBJS := $(OBJS) $(wildcard src/treebuilder/*.o)
10
OBJS := $(OBJS) $(wildcard src/utils/*.o)
3584 sourcerer 11
 
4821 ashmew2 12
include $(MENUETDEV)/makefiles/Makefile_for_lib