forked from w3c/csswg-drafts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[css-viewport] Move device-adapt to css-viewport.
As per w3c#7590
- Loading branch information
Showing
2 changed files
with
636 additions
and
616 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# $Id: Makefile,v 1.5 2008/02/06 14:05:15 mike Exp $ | ||
# | ||
# FIXME: New documentation needed. | ||
# | ||
# Use "make REMOTE=1" to use remote bikeshed | ||
|
||
SOURCEFILE=Overview.bs | ||
OUTPUTFILE=Overview.html | ||
PREPROCESSOR=bikeshed | ||
REMOTE_PREPROCESSOR_URL=https://api.csswg.org/bikeshed/ | ||
|
||
all: $(OUTPUTFILE) | ||
|
||
$(OUTPUTFILE): $(SOURCEFILE) | ||
ifneq (,$(REMOTE)) | ||
curl $(REMOTE_PREPROCESSOR_URL) -F file=@$(SOURCEFILE) > "$@" | ||
else | ||
$(PREPROCESSOR) -f spec "$<" "$@" | ||
endif |
Oops, something went wrong.