Skip to content

Commit

Permalink
Fix default target for make studio
Browse files Browse the repository at this point in the history
  • Loading branch information
eelco committed Sep 2, 2016
1 parent 0d422ff commit 6f3fa61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
BIN = $(CURDIR)/node_modules/.bin BIN = $(CURDIR)/node_modules/.bin


DEFAULT_TARGET = extras/Studio.framer DEFAULT_TARGET = extras/Studio.framer
TARGET ?= DEFAULT_TARGET TARGET ?= $(DEFAULT_TARGET)
TARGET_EXPANDED = $(shell echo $(TARGET)) # For ~ in paths, gulp needs this TARGET_EXPANDED = $(shell echo $(TARGET)) # For ~ in paths, gulp needs this


.PHONY: watch test debug release .PHONY: watch test debug release
Expand All @@ -30,7 +30,7 @@ clean:
# Building and testing # Building and testing


watch: lazy_bootstrap watch: lazy_bootstrap
cp $(DEFAULT_TARGET)/index.html $(TARGET) -cp $(DEFAULT_TARGET)/index.html $(TARGET)
TARGET='$(strip $(TARGET_EXPANDED))' $(BIN)/gulp watch TARGET='$(strip $(TARGET_EXPANDED))' $(BIN)/gulp watch


build: lazy_bootstrap build: lazy_bootstrap
Expand Down

0 comments on commit 6f3fa61

Please sign in to comment.