adamdunkels/ubasic

Makefile missing compile commands

Opened this issue · 1 comments

Hi,

Looks like Makefile is missing CC commands to actually build the source files.

May be it was left out intentionally?

Regards,

Hello @tfarina ,

The makefile should still work (and it does work on my Linux box).

Many versions of make have built-in "implicit rules" for building .o files from corresponding .c files. In particular, if you are using GNU make, you can say make -n -p to see its database of implicit rules.

Thank you!