emdb/Makefile

16 lines
259 B
Makefile
Raw Normal View History

2024-03-09 13:41:57 +01:00
.PHONY: tui, md-exprt, worker
2023-12-21 15:01:06 +01:00
2023-12-29 11:05:20 +01:00
# Define source and destination directories
MD_SRC_DIR := public
MD_DST_DIR := ../ewintr.nl/content/movies
2024-03-09 13:41:57 +01:00
tui:
go run ./terminal-client/main.go
2023-12-27 08:25:09 +01:00
2024-03-09 13:41:57 +01:00
md-export:
go run ./markdown-export/main.go
2023-12-27 08:25:09 +01:00
2024-03-09 13:41:57 +01:00
worker:
go run ./worker/main.go
2023-12-25 11:13:11 +01:00