diff options
author | midipix <writeonce@midipix.org> | 2016-04-04 18:32:09 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-04-04 18:32:09 -0400 |
commit | 533d942ed4aebf90bd01c6d870e3d5ce7b7d66a0 (patch) | |
tree | 52bbbfa7fac110ee0c5e7376ba120c4f5764dc1e | |
parent | b3940afbd36d80909adf04e2e1e6545d0870ce3d (diff) | |
download | slibtool-533d942ed4aebf90bd01c6d870e3d5ce7b7d66a0.tar.bz2 slibtool-533d942ed4aebf90bd01c6d870e3d5ce7b7d66a0.tar.xz |
compile mode: added .asm as a recognized source suffix.
-rw-r--r-- | src/logic/slbt_exec_ctx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/logic/slbt_exec_ctx.c b/src/logic/slbt_exec_ctx.c index 141a621..706fd51 100644 --- a/src/logic/slbt_exec_ctx.c +++ b/src/logic/slbt_exec_ctx.c @@ -46,6 +46,7 @@ static char * slbt_source_file(char ** argv) if ((ch = strrchr(*parg,'.'))) if ((!(strcmp(++ch,"s"))) || (!(strcmp(ch,"S"))) + || (!(strcmp(ch,"asm"))) || (!(strcmp(ch,"c"))) || (!(strcmp(ch,"cc"))) || (!(strcmp(ch,"cxx")))) |