Revision 175:f9f5640c2a3a Makefile

b/Makefile
31 31

  
32 32
.PHONY: deploy-beta deploy-prod deploy-local
33 33
deploy-beta: $(DEPLOY_FILES)
34
	scp $^ tidmarsh.media.mit.edu:/srv/beta/dl
34
	scp $^ web@tidmarsh.media.mit.edu:/srv/beta/dl
35 35

  
36 36
deploy-prod: $(DEPLOY_FILES)
37
	scp $^ tidmarsh.media.mit.edu:/srv/http/dl
37
	scp $^ web@tidmarsh.media.mit.edu:/srv/http/dl
38 38

  
39 39
deploy-local: $(DEPLOY_FILES)
40 40
	scp $^ ~/tid-site/dl
41 41

  
42 42
$(BUILD)/$(LINUX)/$(LINUX_APP): 
43 43
	mkdir -p $(BUILD)/$(LINUX)
44
	$(UNITY) -batchmode -quit -projectPath '$(shell pwd)' -buildLinux64Player $@ -logFile /dev/stdout -nographics
44
	$(UNITY) -batchmode -quit -projectPath '$(shell pwd)' -buildLinux64Player $@ -logFile /dev/stdout 
45 45

  
46 46
$(BUILD)/$(LINUX).tar.bz2: $(BUILD)/$(LINUX)/$(LINUX_APP)
47 47
	cd $(BUILD) && tar cjvf $(LINUX).tar.bz2 $(LINUX)
48 48

  
49 49
$(BUILD)/$(MAC)/$(MAC_APP):
50 50
	mkdir -p $(BUILD)/$(MAC)
51
	$(UNITY) -batchmode -quit -projectPath '$(shell pwd)' -buildOSX64Player $@ -logFile /dev/stdout -nographics
51
	$(UNITY) -batchmode -quit -projectPath '$(shell pwd)' -buildOSX64Player $@ -logFile /dev/stdout 
52 52

  
53 53
$(BUILD)/$(MAC).dmg: $(BUILD)/$(MAC)/$(MAC_APP)
54 54
	genisoimage -V $(MAC) -D -R -apple -no-pad -o $@ $(BUILD)/$(MAC)
......
58 58

  
59 59
$(BUILD)/$(WIN)/$(WIN_APP): 
60 60
	mkdir -p $(BUILD)/$(WIN)
61
	$(UNITY) -batchmode -quit -projectPath '$(shell pwd)' -buildWindowsPlayer $@ -logFile /dev/stdout -nographics
61
	$(UNITY) -batchmode -quit -projectPath '$(shell pwd)' -buildWindowsPlayer $@ -logFile /dev/stdout 
62 62

  
63 63
$(BUILD)/$(WIN)/tidmarsh_$(VERSION).nsi: Assets/Installer/Tidmarsh.nsi
64
	mkdir -p $(BUILD)/$(WIN)
64 65
	sed -e 's/%VER%/$(VERSION)/g' $< > $@
65 66

  
66 67
$(BUILD)/$(WIN).exe: $(BUILD)/$(WIN)/tidmarsh_$(VERSION).nsi $(BUILD)/$(WIN)/$(WIN_APP)

Also available in: Unified diff