diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2015-06-14 20:48:47 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2015-06-14 20:48:47 -0400 |
commit | 864bdf1b3414ff5402c5b1dbf94319f465626885 (patch) | |
tree | 4fa5d893807b93db7de1ac1c718311bca7e1eeca /Makefile | |
parent | 72552f880f3ca52c0d98d875b1da783e5a2fa2e7 (diff) | |
download | bfs-864bdf1b3414ff5402c5b1dbf94319f465626885.tar.xz |
Makefile: Listen to the environment.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -9,10 +9,10 @@ # the COPYING file or http://www.wtfpl.net/ for more details. # ##################################################################### -CC := gcc -CFLAGS := -std=c99 -g -Og -Wall -D_DEFAULT_SOURCE -LDFLAGS := -RM := rm -f +CC ?= gcc +CFLAGS ?= -std=c99 -g -Og -Wall -D_DEFAULT_SOURCE +LDFLAGS ?= +RM ?= rm -f DEPS := bftw.h |