diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-02 18:23:07 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-02 18:23:07 +0000 |
| commit | 4b0ee5b9c089d8870e3f4843f800d77e7af764d9 (patch) | |
| tree | d31f4c35c747b8a7fbf87d6cc4d472f29c1f5c60 /win32 | |
| parent | b52a142fdfd3119167ee7bed8ba1bdfe2f529faa (diff) | |
| download | ruby-4b0ee5b9c089d8870e3f4843f800d77e7af764d9.tar.gz ruby-4b0ee5b9c089d8870e3f4843f800d77e7af764d9.tar.xz ruby-4b0ee5b9c089d8870e3f4843f800d77e7af764d9.zip | |
* Makefile.in, */Makefile.sub, common.mk (vmasm): generalized.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11622 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
| -rw-r--r-- | win32/Makefile.sub | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub index d4cac0d26..26fd8d2b0 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -191,6 +191,7 @@ EXTSTATIC = !endif OBJEXT = obj +ASMEXT = asm INSTALLED_LIST= .installed.list @@ -535,6 +536,15 @@ $(RUBY_INSTALL_NAME).rc $(RUBYW_INSTALL_NAME).rc $(RUBY_SO_NAME).rc: $(RBCONFIG) .c.obj: $(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) -c -Tc$(<:\=/) +{$(srcdir)/missing}.c.asm: + $(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) -Fa -c -Tc$(<:\=/) +{$(srcdir)/win32}.c.asm: + $(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) -Fa -c -Tc$(<:\=/) +{$(srcdir)}.c.asm: + $(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) -Fa -c -Tc$(<:\=/) +.c.asm: + $(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) -Fa -c -Tc$(<:\=/) + .rc.res: $(RC) -I. -I$(<D) $(iconinc) -I$(srcdir)/win32 $(RFLAGS) -fo$@ $(<:\=/) |
