mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:18:12 +00:00
13 lines
274 B
Makefile
13 lines
274 B
Makefile
include ../../Makefile.common
|
|
|
|
LIBRARY = libhtml.a
|
|
|
|
all: $(LIBRARY) tho
|
|
|
|
include Makefile.shared
|
|
|
|
tho: $(TEST_OBJS) $(LIBRARY)
|
|
$(LD) -o $@ $(LDFLAGS) -L. $(TEST_OBJS) -lhtml -lgui -ldraw -lcore -lc
|
|
|
|
$(LIBRARY): $(LIBHTML_OBJS)
|
|
@echo "LIB $@"; $(AR) rcs $@ $(LIBHTML_OBJS)
|