Compare commits
No commits in common. "mistress" and "1.1.0" have entirely different histories.
3 changed files with 19 additions and 20 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,2 +0,0 @@
|
|||
/makefile.csm
|
||||
/rain
|
||||
19
Makefile
Normal file
19
Makefile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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
18
makefile
|
|
@ -1,18 +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:
|
||||
git clean -fdx
|
||||
|
||||
.PHONY: install
|
||||
install:
|
||||
$(INSTALL) -sDm755 rain $(DESTDIR)$(PREFIX)/bin/rain
|
||||
Loading…
Add table
Add a link
Reference in a new issue