Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
lemonldap-ng
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
258
Issues
258
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LemonLDAP NG
lemonldap-ng
Commits
cf7ef0c4
Commit
cf7ef0c4
authored
Jan 19, 2016
by
Yadd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid double files management (done by Perl Makefiles)
parent
598defc0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
22 deletions
+4
-22
Makefile
Makefile
+4
-22
No files found.
Makefile
View file @
cf7ef0c4
...
...
@@ -141,16 +141,6 @@ MANAGERJSONDST=$(SRCMANAGERDIR)/site/static/struct.json \
$(SRCCOMMONDIR)
/lib/Lemonldap/NG/Common/Conf/Constants.pm
\
_example/conf/lmConf-1.js
# Other Perl module files
PERLCOMMONSRC
:=
$(
shell
find
$(SRCCOMMONDIR)
/lib
-name
'*.pm'
)
PERLCOMMONDST
=
$(SRCCOMMONDIR)
/blib/lib/Lemonldap/NG/Common.pm
PERLHANDLERSRC
:=
$(
shell
find
$(SRCHANDLERDIR)
/lib
-name
'*.pm'
)
PERLHANDLERDST
=
$(SRCHANDLERDIR)
/blib/lib/Lemonldap/NG/Handler.pm
PERLPORTALSRC
:=
$(
shell
find
$(SRCPORTALDIR)
/lib
-name
'*.pm'
)
PERLPORTALDST
=
$(SRCPORTALDIR)
/blib/lib/Lemonldap/NG/Portal.pm
PERLMANAGERSRC
:=
$(
shell
find
$(SRCMANAGERDIR)
/lib
-name
'*.pm'
)
PERLMANAGERDST
=
$(SRCMANAGERDIR)
/blib/lib/Lemonldap/NG/Manager.pm
# Javascript and CSS to minify
JSSRCFILES
:=
$(
shell
find
$(SRCMANAGERDIR)
/site/static/js
$(SRCPORTALDIR)
/example
-type
f
-name
'*.js'
|grep
-v
.min.js
)
CSSSRCFILES
:=
$(
shell
find
$(SRCMANAGERDIR)
/site/static/css
$(SRCPORTALDIR)
/example
-type
f
-name
'*.css'
|grep
-v
.min.css
)
...
...
@@ -241,24 +231,16 @@ ${SRCMANAGERDIR}/Makefile:
#
# Perl libraries make
#
common
:
$(PERLCOMMONDST)
handler
:
$(PERLHANDLERDST)
portal
:
$(PERLPORTALDST)
manager
:
$(PERLMANAGERDST)
$(PERLCOMMONDST)
:
common_conf $(PERLCOMMONSRC)
common
:
common_conf
@
$(MAKE)
-C
${SRCCOMMONDIR}
$(PERLHANDLERDST)
:
handler_conf common $(PERLHANDLERSRC)
handler
:
handler_conf
@
$(MAKE)
-C
${SRCHANDLERDIR}
$(PERLPORTALDST)
:
portal_conf common $(PERLPORTALSRC)
portal
:
portal_conf
@
$(MAKE)
-C
${SRCPORTALDIR}
$(PERLMANAGERDST)
:
manager_conf handler $(PERLMANAGERSRC)
manager
:
manager_conf
$(MAKE)
-C
${SRCMANAGERDIR}
test
:
all common_test handler_test portal_test manager_test extra_test
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment