tcbuilder 1.1.6 → 1.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/tcbuild.js +1 -1
  2. package/package.json +1 -1
package/dist/tcbuild.js CHANGED
@@ -217,7 +217,7 @@ process.once('beforeExit', async () => {
217
217
  if (group.finalFlagsToBeRemoved.length > 0)
218
218
  for (const remove of group.finalFlagsToBeRemoved)
219
219
  group_final_flags = group_final_flags.replaceAll(remove, '');
220
- make_out += `OBJ_${name}=${objects}\n${out_name}${group.finalExeSuffix}:$(OBJ_${name}) ${non_objects}\n\t${group.finalExe} ${group_final_flags}\n${recipe}-include $(OBJ_${name}:=.d)\n`;
220
+ make_out += `OBJ_${name}=${objects}\n${out_name}${group.finalExeSuffix}:${non_objects} $(OBJ_${name})\n\t${group.finalExe} ${group_final_flags}\n${recipe}-include $(OBJ_${name}:=.d)\n`;
221
221
  }
222
222
  await fs.promises.writeFile('./Makefile', `all: ${targets}\n${make_out}`);
223
223
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tcbuilder",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "Build System",
5
5
  "homepage": "https://github.com/umutfahriozkan/tcbuild#readme",
6
6
  "bugs": {