lowercase makefile looks better
This commit is contained in:
parent
381fa66dfc
commit
ec49659cb1
2 changed files with 5 additions and 5 deletions
18
makefile
Normal file
18
makefile
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
CSM := csm
|
||||
PREFIX := /usr/local
|
||||
INSTALL := install
|
||||
|
||||
.PHONY: all
|
||||
all: makefile.csm
|
||||
$(MAKE) -f makefile.csm
|
||||
|
||||
makefile.csm:
|
||||
$(CSM) -makefile makefile.csm
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
git clean -fdx
|
||||
|
||||
.PHONY: install
|
||||
install:
|
||||
$(INSTALL) -sDm755 rain $(DESTDIR)$(PREFIX)/bin/rain
|
||||
Loading…
Add table
Add a link
Reference in a new issue