Skip to content

Commit

Permalink
[css-viewport] Move device-adapt to css-viewport.
Browse files Browse the repository at this point in the history
As per w3c#7590
  • Loading branch information
emilio committed Sep 16, 2022
1 parent 29dbf2b commit 5020660
Show file tree
Hide file tree
Showing 2 changed files with 636 additions and 616 deletions.
19 changes: 19 additions & 0 deletions css-viewport/Makefile
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
Loading

0 comments on commit 5020660

Please sign in to comment.