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