Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e66d4219
Commit
e66d4219
authored
Mar 14, 1999
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed Makefile up-to-date check to avoid relinking all the object
files.
parent
110b4c19
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
Make.rules.in
Make.rules.in
+5
-3
No files found.
Make.rules.in
View file @
e66d4219
...
@@ -136,13 +136,17 @@ $(BUILD) checkbuild:
...
@@ -136,13 +136,17 @@ $(BUILD) checkbuild:
# Rule for main module
# Rule for main module
$(MODULE).o:
Makefile
$(OBJS)
$(MODULE).o: $(OBJS)
$(LDCOMBINE) $(OBJS) -o $(MODULE).o
$(LDCOMBINE) $(OBJS) -o $(MODULE).o
# Rules for makefile
Makefile: Makefile.in $(TOPSRCDIR)/configure
Makefile: Makefile.in $(TOPSRCDIR)/configure
@echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
@echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
@exit 1
@exit 1
all: Makefile
# Rules for auto documentation
# Rules for auto documentation
man: $(C_SRCS)
man: $(C_SRCS)
...
@@ -151,8 +155,6 @@ man: $(C_SRCS)
...
@@ -151,8 +155,6 @@ man: $(C_SRCS)
html: $(C_SRCS)
html: $(C_SRCS)
for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/html -Th -iwindows.h $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
for i in $(C_SRCS); do $(C2MAN) -L -o $(TOPOBJDIR)/documentation/html -Th -iwindows.h $(DIVINCL) -D__WINE__ $(MANSPECS) $$i; done
# Rule for linting
# Rule for linting
lint:
lint:
...
...
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