[PR #377] [MERGED] Update build system. Now libraries are produced as build artifacts. #980

Open
opened 2026-01-29 20:51:57 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/google/brotli/pull/377
Author: @eustas
Created: 6/16/2016
Status: Merged
Merged: 6/16/2016
Merged by: @eustas

Base: masterHead: master


📝 Commits (2)

  • 378485b Update build system. Now libraries are produced as build artifacts.
  • f9ab24a Fix gitignore

📊 Changes

19 files changed (+1143 additions, -85 deletions)

View changed files

📝 .gitignore (+3 -2)
BUILD (+148 -0)
Makefile (+12 -0)
WORKSPACE (+4 -0)
build/gmake/Makefile (+91 -0)
build/gmake/bro.make (+187 -0)
build/gmake/brotli_common.make (+187 -0)
build/gmake/brotli_dec.make (+199 -0)
build/gmake/brotli_enc.make (+243 -0)
common/Makefile (+0 -12)
configure (+19 -0)
dec/Makefile (+0 -12)
enc/Makefile (+0 -13)
premake5.lua (+47 -0)
shared.mk (+0 -13)
📝 tests/Makefile (+1 -3)
📝 tests/compatibility_test.sh (+1 -1)
📝 tests/roundtrip_test.sh (+1 -1)
tools/Makefile (+0 -28)

📄 Description

There are currently 3 ways to build:

  • Easy: ./configure; make
  • Simple: use Bazel
  • Portable: use premake5 to generate XCode / MSVS projects

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/google/brotli/pull/377 **Author:** [@eustas](https://github.com/eustas) **Created:** 6/16/2016 **Status:** ✅ Merged **Merged:** 6/16/2016 **Merged by:** [@eustas](https://github.com/eustas) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (2) - [`378485b`](https://github.com/google/brotli/commit/378485b097fd7b80a5e404a3cb912f7b18f78cdb) Update build system. Now libraries are produced as build artifacts. - [`f9ab24a`](https://github.com/google/brotli/commit/f9ab24a7aaee93d5932ba212e5e3d32e4306f748) Fix gitignore ### 📊 Changes **19 files changed** (+1143 additions, -85 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+3 -2) ➕ `BUILD` (+148 -0) ➕ `Makefile` (+12 -0) ➕ `WORKSPACE` (+4 -0) ➕ `build/gmake/Makefile` (+91 -0) ➕ `build/gmake/bro.make` (+187 -0) ➕ `build/gmake/brotli_common.make` (+187 -0) ➕ `build/gmake/brotli_dec.make` (+199 -0) ➕ `build/gmake/brotli_enc.make` (+243 -0) ➖ `common/Makefile` (+0 -12) ➕ `configure` (+19 -0) ➖ `dec/Makefile` (+0 -12) ➖ `enc/Makefile` (+0 -13) ➕ `premake5.lua` (+47 -0) ➖ `shared.mk` (+0 -13) 📝 `tests/Makefile` (+1 -3) 📝 `tests/compatibility_test.sh` (+1 -1) 📝 `tests/roundtrip_test.sh` (+1 -1) ➖ `tools/Makefile` (+0 -28) </details> ### 📄 Description There are currently 3 ways to build: - Easy: `./configure; make` - Simple: use Bazel - Portable: use premake5 to generate XCode / MSVS projects --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 20:51:57 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/brotli#980