mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 22:45:07 +00:00

We've been using a per-directory "install.sh" for some time, so let's get rid of the old way of doing things.
13 lines
267 B
Makefile
13 lines
267 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 -lcore -lc
|
|
|
|
$(LIBRARY): $(LIBHTML_OBJS)
|
|
@echo "LIB $@"; $(AR) rcs $@ $(LIBHTML_OBJS)
|