This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Makefile - Generate HTML, PDF, EPUB, MOBI from ASC | |
# This is how you assign a string to a variable name in 'make'. The | |
# variable name doesn't have to be all caps and the equal doesn't have | |
# to be snugged up to the variable name; it's just how I write | |
# Makefiles | |
FILENAME= the_document | |
# $(IDENTIFIER) is how you reference a 'make' variable, you can use |