Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Makefile: add an explicit rule for building assembly output
[gitweb.git]
/
Makefile
diff --git
a/Makefile
b/Makefile
index 0f7595552d6b13c3dda425ab4240cfb75ca4bea7..30a405292215acc4a4520e87a8c10bd7a9284a98 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-845,6
+845,8
@@
git$X git.spec \
%.o: %.c GIT-CFLAGS
$(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $<
+%.s: %.c GIT-CFLAGS
+ $(QUIET_CC)$(CC) -S $(ALL_CFLAGS) $<
%.o: %.S
$(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $<