diff options
author | Benji Dial <benji@benjidial.net> | 2024-05-18 21:53:38 -0400 |
---|---|---|
committer | Benji Dial <benji@benjidial.net> | 2024-05-18 21:53:38 -0400 |
commit | b1a912a8a6ff472a49b2e0a09cfd433adfc2cb24 (patch) | |
tree | 5009d4415ba13e4baa37f3d0271852528130fd3b /libraries/daguerre/makefile | |
parent | a8a80d326de9550b2a25b1255a2093ab43219ede (diff) | |
download | hilbert-os-b1a912a8a6ff472a49b2e0a09cfd433adfc2cb24.tar.gz |
reorganization, cross compiler
Diffstat (limited to 'libraries/daguerre/makefile')
-rw-r--r-- | libraries/daguerre/makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libraries/daguerre/makefile b/libraries/daguerre/makefile new file mode 100644 index 0000000..3505d35 --- /dev/null +++ b/libraries/daguerre/makefile @@ -0,0 +1,12 @@ +SOURCES = \ + daguerre.cpp + +build/%.cpp.o: source/%.cpp + @mkdir -p $(@D) + $(HILBERT_CC) -c $^ -o $@ + +build/libdaguerre.a: $(SOURCES:%=build/%.o) + $(HILBERT_AR) rcs $@ $^ + +clean: + rm -rf build |