Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
dca59645
Commit
dca59645
authored
Apr 09, 2010
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix EXCLUDE logic for makefiles, add fastcheck
parent
20077630
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
3 deletions
+11
-3
Makefile
Makefile
+9
-1
Makefile-ccan
Makefile-ccan
+1
-1
Makefile-web
Makefile-web
+1
-1
No files found.
Makefile
View file @
dca59645
...
...
@@ -12,7 +12,7 @@
# Trying to build the whole repo is usually a lose; there will be some
# dependencies you don't have.
EXCLUDE
=
ccan/wwviaudio ccan/
ogg_to_pcm
EXCLUDE
=
wwviaudio
ogg_to_pcm
# Anything with an _info file is a module.
ALL
=
$(
filter-out
$(EXCLUDE)
,
$(
patsubst
ccan/%/_info, %,
$(
wildcard
ccan/
*
/_info
)))
...
...
@@ -24,6 +24,8 @@ default: libccan.a
include
Makefile-ccan
fastcheck
:
$(ALL_TESTS:%=summary-fastcheck-%)
check
:
$(ALL_TESTS:%=summary-check-%)
distclean
:
clean
...
...
@@ -36,10 +38,16 @@ $(ALL_DEPENDS): %/.depends: %/_info tools/ccan_depends
check-%
:
tools/ccanlint/ccanlint
@
tools/ccanlint/ccanlint
-d
ccan/
$*
fastcheck-%
:
tools/ccanlint/ccanlint
@
tools/ccanlint/ccanlint
-t
-d
ccan/
$*
# Doesn't test dependencies, doesn't print verbose fail results.
summary-check-%
:
tools/ccanlint/ccanlint $(OBJFILES)
@
tools/ccanlint/ccanlint
-s
-d
ccan/
$*
summary-fastcheck-%
:
tools/ccanlint/ccanlint $(OBJFILES)
@
tools/ccanlint/ccanlint
-t
-s
-d
ccan/
$*
ccan/%/info
:
ccan/%/_info
$(CC)
$(CFLAGS)
-o
$@
-x
c
$<
...
...
Makefile-ccan
View file @
dca59645
...
...
@@ -12,7 +12,7 @@ DEPGEN=-MD
-include ccan/*/*.d
# Every directory with .c files is included.
DIRS=$(filter-out $(
EXCLUDE
), $(patsubst %/, %, $(sort $(dir $(wildcard ccan/*/*.c)))))
DIRS=$(filter-out $(
foreach d,$(EXCLUDE),ccan/$d
), $(patsubst %/, %, $(sort $(dir $(wildcard ccan/*/*.c)))))
# Generate everyone's separate Makefiles.
-include $(foreach dir, $(DIRS), $(dir)-Makefile)
...
...
Makefile-web
View file @
dca59645
...
...
@@ -12,7 +12,7 @@ JUNKPAGES=$(JUNKDIRS:%=$(WEBDIR)/%.html)
JUNKBALLS=$(JUNKDIRS:%=$(WEBDIR)/%.tar.bz2)
BZRBROWSE=$(WEBDIR)/bzrbrowse.cgi $(WEBDIR)/file.png $(WEBDIR)/folder.png
upload: check webpages
upload:
fast
check webpages
bzr push
send-web # Rusty's upload script.
...
...
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