forked from eellak/build-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
side changes: - Makefile moved to src directory - RDF base URI changed Fixes eellak#197 Signed-off-by: Alexios Zavras <[email protected]>
- Loading branch information
Showing
5 changed files
with
33 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Copyright (C) 2023 Alexios Zavras | ||
# Copyright (C) 2023 Fotios Valasiadis | ||
# SPDX-License-Identifier: LGPL-2.1-or-later | ||
|
||
bin_PROGRAMS = build-recorder | ||
|
||
build_recorder_SOURCES = \ | ||
hash.c \ | ||
main.c \ | ||
record.c \ | ||
schema.c \ | ||
tracer.c \ | ||
$(EMPTY) | ||
|
||
SCHEMA = ../doc/build-recorder-schema.ttl | ||
|
||
|
||
if HAVE_XXD | ||
schema.c: $(SCHEMA) | ||
sed '/^#/d' $^ | $(XXD) -i -n schema > $@ | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters