public
Description: Modern version of Ido learning book.
Clone URL: git://github.com/dpc/ido-skolo.git
Search Repo:
ido-skolo / Makefile
100644 13 lines (8 sloc) 0.199 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
# Makefile for Markdown + Make demonstration
 
.SUFFIXES: .text .html
 
SRCS := $(shell ls *.text)
DSTS := ${SRCS:.text=.text.html}
 
.PHONY: all
 
all: ${DSTS}
 
%.text.html: %.text Makefile
  md2html $<