diff options
author | Alexander F. Rødseth <52813+xyproto@users.noreply.github.com> | 2020-02-27 11:44:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-27 11:44:29 +0100 |
commit | cdb58cdfd2976bae55218eda2a10c355f2a1693a (patch) | |
tree | 18911915a01533d4426ce27097ee90202b1b78c1 /Makefile | |
parent | 4997dcde06ca91718f775ffb002d3c459ab23679 (diff) | |
download | serenity-cdb58cdfd2976bae55218eda2a10c355f2a1693a.zip |
Build: Use ccache if it's available (#1315)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -15,6 +15,10 @@ SUBDIRS += \ Games \ Demos +ifneq (, $(shell which ccache)) + export PRE_CXX=ccache +endif + include Makefile.subdir all: subdirs |