13 lines
141 B
Makefile
13 lines
141 B
Makefile
|
SHELL=bash
|
||
|
|
||
|
.PHONY: generate push all
|
||
|
|
||
|
all: generate push
|
||
|
|
||
|
generate:
|
||
|
./generate.py
|
||
|
|
||
|
push:
|
||
|
rsync -avuP ./deploy/ quitte:public_html/regex
|
||
|
|