Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ec49659cb1 | |||
| 381fa66dfc | |||
| 9b7c4f0a4e |
3 changed files with 20 additions and 19 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/makefile.csm
|
||||
/rain
|
||||
19
Makefile
19
Makefile
|
|
@ -1,19 +0,0 @@
|
|||
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: Makefile.csm
|
||||
$(MAKE) -f Makefile.csm clean
|
||||
rm -f Makefile.csm rain
|
||||
|
||||
.PHONY: install
|
||||
install:
|
||||
$(INSTALL) -sDm755 rain $(DESTDIR)$(PREFIX)/bin/rain
|
||||
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