-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (20 loc) · 629 Bytes
/
Makefile
File metadata and controls
25 lines (20 loc) · 629 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
# Makefile for WordPress theme ppfeufer
# Default goal and help message for the Makefile
.DEFAULT_GOAL := help
# Theme information
theme_name = EVE Online
theme_slug = eve-online
# Git repository URLs
theme_repo_url = https://github.com/ppfeufer/$(theme_slug)-wordpress-theme
theme_issues_url = $(theme_repo_url)/issues
# Help message for the Makefile
.PHONY: help
help::
@echo "$(TEXT_BOLD)$(theme_name)$(TEXT_BOLD_END) Makefile"
@echo ""
@echo "$(TEXT_BOLD)Usage:$(TEXT_BOLD_END)"
@echo " make [command]"
@echo ""
@echo "$(TEXT_BOLD)Commands:$(TEXT_BOLD_END)"
# Include the configurations
include .make/conf.d/*.mk