mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Added InstallEdeDoc and LinkAgainstFirst rules
This commit is contained in:
parent
6394b85004
commit
aa8eb8e010
@ -141,6 +141,13 @@ rule InstallEdeMimeFiles
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# InstallEdeDoc [targets] ;
|
||||||
|
# Installs targets to EDEDOCDIR directory
|
||||||
|
rule InstallEdeDoc
|
||||||
|
{
|
||||||
|
InstallData $(EDEDOCDIR) : $(1) ;
|
||||||
|
}
|
||||||
|
|
||||||
actions Install1
|
actions Install1
|
||||||
{
|
{
|
||||||
$(CP) "$(>)" "$(<)"
|
$(CP) "$(>)" "$(<)"
|
||||||
|
@ -55,6 +55,13 @@ rule LinkAgainst
|
|||||||
LINKLIBS on $(1) = [ on $(1) return $(LINKLIBS) ] $(2) ;
|
LINKLIBS on $(1) = [ on $(1) return $(LINKLIBS) ] $(2) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# LinkAgainstAsFirst [taraget] : [libraries] ;
|
||||||
|
# The same as LinkAgainst, except [libraries] will be placed before other libraries.
|
||||||
|
rule LinkAgainstAsFirst
|
||||||
|
{
|
||||||
|
LINKLIBS on $(1) = $(2) [ on $(1) return $(LINKLIBS) ] ;
|
||||||
|
}
|
||||||
|
|
||||||
# Program [target] : [sources] ;
|
# Program [target] : [sources] ;
|
||||||
# Compiles and links [target] from [sources]. No external flags or
|
# Compiles and links [target] from [sources]. No external flags or
|
||||||
# libraries are used since this should be generic rule for compiling
|
# libraries are used since this should be generic rule for compiling
|
||||||
|
Loading…
Reference in New Issue
Block a user