-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable custom autosave configuration #1
base: main
Are you sure you want to change the base?
Changes from 1 commit
60b37b4
9d1bcf7
a1199d9
30f8ffc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
TOP=.. | ||
include $(TOP)/configure/CONFIG | ||
|
||
install: | ||
ln -s $(shell realpath $(INSTALL_HOST_BIN))/Camera /usr/local/bin/ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could this use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Btw can you still run There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Yep. That seems better indeed.
Hmm. I haven't analyzed it. I bet we would have broken links around. Probably it will require a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Hmm. Actually, TOP = ..
INSTALL_LOCATION = ..
INSTALL_ABSOLUTE = /opt/ad-aravis-epics-ioc
FINAL_LOCATION = /opt/ad-aravis-epics-ioc
INSTALL_LOCATION_BIN = ../bin
EPICS_HOST_ARCH = linux-x86_64
INSTALL_HOST_BIN = ../bin/linux-x86_64
IOCS_APPL_TOP = /opt/ad-aravis-epics-ioc I thought it would be okay to use For me, either we use my original suggestion or There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using |
||
|
||
include $(CONFIG)/RULES_DIRS |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't it enough that we depend on iocBoot and it depends on all "App" directories? If not, wouldn't it be best to use the
filter
command from above, nonetheless?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it is enough, since
iocBoot
depends on App. I listed it explicitly because we depend directly on an artifact from theApp
directory.It is okay to simplify this assuming that
iocBoot
dependencies will never change.Indeed. My mistake.