diff options
author | Benji Dial <benji@benjidial.net> | 2024-07-29 19:59:52 -0400 |
---|---|---|
committer | Benji Dial <benji@benjidial.net> | 2024-07-29 19:59:52 -0400 |
commit | e6c3a80b01ffb52079783cddd9be6d392d0f7039 (patch) | |
tree | 148276b9878f287bc81638f90249ec4d7b86eaf0 /libraries/pake/makefile | |
parent | be691582ee12613278af24cb5a824eeb357f6324 (diff) | |
download | hilbert-os-e6c3a80b01ffb52079783cddd9be6d392d0f7039.tar.gz |
redesign compositor protocol, start widget library
Diffstat (limited to 'libraries/pake/makefile')
-rw-r--r-- | libraries/pake/makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libraries/pake/makefile b/libraries/pake/makefile new file mode 100644 index 0000000..28e7d37 --- /dev/null +++ b/libraries/pake/makefile @@ -0,0 +1,12 @@ +SOURCES = \ + widgets/fixed-text.cpp dirtiable-image.cpp window.cpp + +build/%.cpp.o: source/%.cpp + @mkdir -p $(@D) + $(HILBERT_CC) -c $^ -o $@ + +build/libpake.a: $(SOURCES:%=build/%.o) + $(HILBERT_AR) rcs $@ $^ + +clean: + rm -rf build |