Build system: Allow override on command line.

This commit is contained in:
Arvid Norlander 2022-09-29 17:45:52 +02:00
parent 1c126a2d40
commit f374ae6ab2
No known key found for this signature in database
GPG Key ID: E824A8E5D8D29AA0
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
BINDIR = bin
BINDIR ?= bin
# Use the following flags on the CF macro definition as needed.
#
# -DBSD if you are on a BSD system
@ -23,7 +23,7 @@ BINDIR = bin
#
# -DAPPLEDOUBLE if you want to be able to use an AppleDouble file system
#
CF = -DBSD -DTYPES_H -DDIRENT_H -DTERMIOS_H -DNODOT -DAPPLEDOUBLE
CF ?= -DBSD -DTYPES_H -DDIRENT_H -DTERMIOS_H -DNODOT -DAPPLEDOUBLE
all:
(cd crc; make CF='$(CF)')