-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (26 loc) · 687 Bytes
/
Makefile
File metadata and controls
32 lines (26 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Makefile for CV Generation
.PHONY: html image pdf clean help
# Default target
help:
@echo "Available targets:"
@echo " html - Generate HTML CV page"
@echo " image - Build Docker image"
@echo " pdf - Generate PDF via Docker"
@echo " clean - Clean generated files (dist folder)"
@echo " help - Show this help message"
# Generate HTML CV
html:
@echo "Generating HTML CV..."
./build_html.sh
# Build Docker image
image:
@echo "Building Docker image..."
./docker/scripts/build.sh
# Generate PDF via Docker
pdf:
@echo "Generating PDF via Docker..."
./docker/scripts/generate.sh
# Clean generated files
clean:
@echo "Cleaning generated files..."
rm -rf dist/*