gallium: Using the proper pattern rules for Makefile template.
The .o.c rule is consider obsolete. Signed-off-by: José Fonseca <jfonseca@vmware.com>
This commit is contained in:
parent
8b6ec94aec
commit
62d1e40e0d
1 changed files with 3 additions and 3 deletions
|
|
@ -53,13 +53,13 @@ install:
|
|||
|
||||
##### RULES #####
|
||||
|
||||
.c.o:
|
||||
%.o: %.c
|
||||
$(CC) -c $(INCLUDES) $(DEFINES) $(CFLAGS) $(LIBRARY_DEFINES) $< -o $@
|
||||
|
||||
.cpp.o:
|
||||
%.o: %.cpp
|
||||
$(CXX) -c $(INCLUDES) $(DEFINES) $(CXXFLAGS) $(LIBRARY_DEFINES) $< -o $@
|
||||
|
||||
.S.o:
|
||||
%.o: %.S
|
||||
$(CC) -c $(INCLUDES) $(DEFINES) $(CFLAGS) $(LIBRARY_DEFINES) $< -o $@
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue