mirror of
https://github.com/0intro/wmii
synced 2024-11-22 13:52:17 +03:00
Use contents of $(SHELL) macro to run util scripts.
This commit is contained in:
parent
1a4f8d94c7
commit
db1494baf5
@ -157,7 +157,7 @@ An action is a shell script in the default setup, but it can
|
|||||||
actually be any executable file. It is executed usually by
|
actually be any executable file. It is executed usually by
|
||||||
selecting it from the actions menu. You can customize an action
|
selecting it from the actions menu. You can customize an action
|
||||||
by copying it from the global action directory
|
by copying it from the global action directory
|
||||||
\&'@CONFPREFIX@/wmii\-3.5' to '\fB$HOME\fR/.wmii\-3.5' and then
|
\&'@CONFPREFIX@/wmii@CONFVERSION@' to '\fB$HOME\fR/.wmii@CONFVERSION@' and then
|
||||||
editing the copy to fit your needs. Of course you can also
|
editing the copy to fit your needs. Of course you can also
|
||||||
create your own actions there; make sure that they are
|
create your own actions there; make sure that they are
|
||||||
executable.
|
executable.
|
||||||
|
10
mk/hdr.mk
10
mk/hdr.mk
@ -23,13 +23,13 @@ FILTER = cat
|
|||||||
EXCFLAGS = $(INCLUDES) -D_XOPEN_SOURCE=600
|
EXCFLAGS = $(INCLUDES) -D_XOPEN_SOURCE=600
|
||||||
|
|
||||||
COMPILE_FLAGS = $(EXCFLAGS) $(CFLAGS) $$(pkg-config --cflags $(PACKAGES))
|
COMPILE_FLAGS = $(EXCFLAGS) $(CFLAGS) $$(pkg-config --cflags $(PACKAGES))
|
||||||
COMPILE = $(ROOT)/util/compile "$(CC)" "$(COMPILE_FLAGS)"
|
COMPILE = $(SHELL) $(ROOT)/util/compile "$(CC)" "$(COMPILE_FLAGS)"
|
||||||
COMPILEPIC = $(ROOT)/util/compile "$(CC)" "$(COMPILE_FLAGS) $(SOCFLAGS)"
|
COMPILEPIC = $(SHELL) $(ROOT)/util/compile "$(CC)" "$(COMPILE_FLAGS) $(SOCFLAGS)"
|
||||||
|
|
||||||
LINK = $(ROOT)/util/link "$(LD)" "$$(pkg-config --libs $(PACKAGES)) $(LDFLAGS) $(LIBS)"
|
LINK = $(SHELL) $(ROOT)/util/link "$(LD)" "$$(pkg-config --libs $(PACKAGES)) $(LDFLAGS) $(LIBS)"
|
||||||
LINKSO = $(ROOT)/util/link "$(LD)" "$$(pkg-config --libs $(PACKAGES)) $(SOLDFLAGS) $(LIBS) $(SHARED)"
|
LINKSO = $(SHELL) $(ROOT)/util/link "$(LD)" "$$(pkg-config --libs $(PACKAGES)) $(SOLDFLAGS) $(LIBS) $(SHARED)"
|
||||||
|
|
||||||
CLEANNAME=$(ROOT)/util/cleanname
|
CLEANNAME=$(SHELL) $(ROOT)/util/cleanname
|
||||||
|
|
||||||
SOEXT=so
|
SOEXT=so
|
||||||
TAGFILES=
|
TAGFILES=
|
||||||
|
Loading…
Reference in New Issue
Block a user