Skip to content
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

Specify operations and discovery #43

Merged
merged 14 commits into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 19 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,27 @@ IVOA_GROUP = Data Model
# be called $(DOCNAME).tex
SOURCES = $(DOCNAME).tex

# List of pixel image files to be included in submitted package
FIGURES = archdiag.png
# List of pixel image files to be included in submitted package
FIGURES =

# List of PDF figures (for vector graphics)
VECTORFIGURES =
VECTORFIGURES =

# Additional files to distribute (e.g., CSS, schema files, examples...)
AUX_FILES =
AUX_FILES =

include ivoatex/Makefile
-include ivoatex/Makefile

ivoatex/Makefile:
@echo "*** ivoatex submodule not found. Initialising submodules."
@echo
git submodule update --init

# update the registry record example from a locally running DaCHS
sample-record.xml:
curl -s http://localhost:8080/getRR/__system__/obs-radio/obs_radio | xmlstarlet fo > $@

STILTS ?= stilts

test:
@$(STILTS) xsdvalidate sample-record.xml
Loading