Correct old statements in Makefiles

This commit is contained in:
2016-03-22 23:33:38 +01:00
parent 70d35feac0
commit e73b4c3338
15 changed files with 21 additions and 24 deletions

View File

@@ -1,3 +1,4 @@
btsync: btsync:
$(call script,$@) $(call script,$@)
$(call runit,$@) $(call runit,$@)
$(call boot,02,$@)

View File

@@ -1,2 +1,2 @@
chrome: chrome:
ln -f $(BASE)/scripts/*_$@.sh build/scripts $(call script,$@)

View File

@@ -1,2 +1,2 @@
compile: compile:
ln -f $(BASE)/scripts/*_$@.sh build/scripts $(call script,$@)

View File

@@ -1,2 +1,2 @@
firefox: user firefox: user
ln -f $(BASE)/scripts/*_$@.sh build/scripts $(call script,$@)

View File

@@ -1,3 +1,2 @@
ftp: ftp:
$(call script,$@) $(call script,$@)
$(call runit,$@)

View File

@@ -1,3 +1,3 @@
gmrender: compile gmrender: compile
cp $(BASE)/scripts/*_$@.sh build/scripts $(call script,$@)
cp $(BASE)/runit/$@ build/runit $(call runit,$@)

View File

@@ -1,4 +1,4 @@
hamachi: hamachi:
ln -f $(BASE)/scripts/*_$@.sh build/scripts $(call script,$@)
ln -f $(BASE)/runit/$@ build/runit $(call runit,$@)
ln -f $(BASE)/boot/*_$@.sh build/boot $(call boot,02,$@)

View File

@@ -1,3 +1,3 @@
lighttpd-php: php lighttpd lighttpd-php: php lighttpd
$(call script,$@) $(call script,$@)
$(call boot,02,$@) $(call boot,02,$@)

View File

@@ -1,3 +1,3 @@
minidlna: compile minidlna: compile
ln -f $(BASE)/scripts/*_$@.sh build/scripts $(call script,$@)
ln -f $(BASE)/runit/$@ build/runit $(call runit,$@)

View File

@@ -1,2 +1,2 @@
pulseaudio: pulseaudio:
ln -f $(BASE)/scripts/*_$@.sh build/scripts $(call script,$@)

View File

@@ -1,3 +1,3 @@
redis: redis:
ln -f $(BASE)/scripts/*_$@.sh build/scripts $(call script,$@)
ln -f $(BASE)/runit/$@ build/runit $(call runit,$@)

View File

@@ -1,3 +0,0 @@
testing:
#$(call download,$@)
$(call download,scripts/$@,/opt/tmp)

View File

@@ -1,3 +1,3 @@
upnpproxy: compile upnpproxy: compile
cp $(BASE)/scripts/*_$@.sh build/scripts $(call script,$@)
cp $(BASE)/runit/$@ build/runit $(call runit,$@)

View File

@@ -1,2 +1,2 @@
user: user:
ln -f $(BASE)/scripts/*_$@.sh build/scripts $(call script,$@)

View File

@@ -1,3 +1,3 @@
webserver: lighttpd-php phpmyadmin webserver: lighttpd-php phpmyadmin
$(call script,$@) $(call script,$@)
$(call boot,02,$@) $(call boot,02,$@)