Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
airliquide
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
gui
airliquide
Commits
229cdd48
Commit
229cdd48
authored
4 months ago
by
Giacomo Strangolino
Browse files
Options
Downloads
Patches
Plain Diff
added Makefile.INAU
parent
96bb14cc
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile.INAU
+26
-0
26 additions, 0 deletions
Makefile.INAU
with
26 additions
and
0 deletions
Makefile.INAU
0 → 100644
+
26
−
0
View file @
229cdd48
# Makefile
# Get the current working directory
CURRENT_DIR
:=
$(
shell
pwd
)
# assume the binary name reflects the name of the dir
PROJECT_NAME
=
$(
notdir
$(
shell
pwd
))
APP_NAME
=
$(
PROJECT_NAME
)
-gui
PREFIX
?=
/runtime
CUMBIA_ROOT
?=
/runtime
MKF_OUT
=
Makefile.qmake
export
MAKE
:=
$(
MAKE
)
# The default target when you run 'make'
all
:
@
qmake
CUMBIA_ROOT
=
$(
CUMBIA_ROOT
)
-o
$(
MKF_OUT
)
\
&&
cuuimake
\
&&
$(
MAKE
)
-f
$(
MKF_OUT
)
# The target when you run 'make install'
install
:
install
-d
$(
PREFIX
)
/bin
install
-m
0755 bin/
$(
APP_NAME
)
$(
PREFIX
)
/bin
.PHONY
:
clean
clean
:
@
rm
-rf
objs objects bin moc
$(
MKF_OUT
)
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment