DLTcollab / TA-endpoint

Connect resource constrained endpoints with Tangle-Accelerator
Apache License 2.0
0 stars 2 forks source link

fix: Simplify the build targets #58

Closed splasky closed 4 years ago

splasky commented 4 years ago

INCLUDES variable was defined inside major Makefile. Use $(INCLUDES) for include all headers inside Ta-endpoint during compiling.

Use OBJS for link all needed object files during compiling. OBJS will search source of c inside directory which include by SUBDIR.

Remove Makefile inside utils and connectivity. The objects will be generated by top of Makefile.

Closes #53

jserv commented 4 years ago

Change the subject to

Simplify the build targets

jserv commented 4 years ago

Did you verify parallel build?

splasky commented 4 years ago

I tested with command make -j$(nproc). It only generated error message from #61. After fix it. It works well.

jserv commented 4 years ago

The git commit message should mention the removal of Makefile entries in directory utils and connectivity.