diff options
| author | James Tomasino <james@tomasino.org> | 2020-06-12 11:24:40 +0000 |
|---|---|---|
| committer | James Tomasino <james@tomasino.org> | 2020-06-12 11:24:40 +0000 |
| commit | 3b9738c9c625fe1dd7700ea0325463d8035f321e (patch) | |
| tree | 71ac247d15e36fa6085a41ac1876b2ffaf12c72b | |
| parent | 89263ec94135dfa03fe1e4501c780d982ee78385 (diff) | |
| download | kristall-3b9738c9c625fe1dd7700ea0325463d8035f321e.tar.gz | |
adds sourcefiles as dependency to build task
Monitoring the modified state of source files for the build task means
that simply running 'make' will detect if a rebuild is actually needed
or not. Currently if the build file exists make is not run again. A
clean must be run first, then make. This is an improvement on that.
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ sharedir=$(DESTDIR)$(PREFIX)/share kristall: build/kristall cp build/kristall $@ -build/kristall: +build/kristall: src/* mkdir -p build cd build && qmake ../src/kristall.pro && $(MAKE) |
