mirror of
https://github.com/Fishwaldo/open-zwave.git
synced 2025-03-15 19:41:36 +00:00
The default BSD make (at least on FreeBSD) is not GNU make, nor is it compatbile with it. This new BSDmakefile will case BSD make to invoke GNU make.
6 lines
71 B
Makefile
6 lines
71 B
Makefile
all: .DEFAULT
|
|
|
|
.DEFAULT:
|
|
gmake ${.MAKEFLAGS} ${.TARGETS}
|
|
|
|
.PHONY: all
|