blob: cc0848d3099825fd8e6831ad4dbf4e9e6b312759 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
include ../../Makefile.common
LIBRARY = libhtml.a
all: $(LIBRARY) tho
include Makefile.shared
tho: $(TEST_OBJS) $(LIBRARY)
$(LD) -o $@ $(LDFLAGS) -L. $(TEST_OBJS) -lhtml -lgui -lcore -lc
$(LIBRARY): $(LIBHTML_OBJS)
@echo "LIB $@"; $(AR) rcs $@ $(LIBHTML_OBJS)
|