Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
ea57a1ea
Commit
ea57a1ea
authored
Oct 04, 2009
by
Mark Lodato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
freeze: Makefile: only clean specific C files
parent
18eccdef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Demos/freeze/Makefile
Demos/freeze/Makefile
+3
-2
No files found.
Demos/freeze/Makefile
View file @
ea57a1ea
...
...
@@ -14,6 +14,7 @@ TARGET = nCr
# List of Cython source files, with main module first.
CYTHON_SOURCE
=
combinatorics.pyx cmath.pyx
CYTHON_SECONDARY
=
$(CYTHON_SOURCE:.pyx=.c)
$(TARGETS:=.c)
all
:
$(TARGET)
...
...
@@ -27,7 +28,7 @@ $(TARGET).c :
$(CYTHON)
$(CYTHONFLAGS)
$^
clean
:
$(RM)
*
.o
*
.c
$(TARGET)
$(RM)
*
.o
$(CYTHON_SECONDARY)
$(TARGET)
.PHONY
:
clean
.SECONDARY
:
$(CYTHON_S
OURCE:.pyx=.c
)
.SECONDARY
:
$(CYTHON_S
ECONDARY
)
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