How to compile multiple C file with single Makefile in OpenWRT?

278 Views Asked by At

I am having multiple 'C' files in '/home/user/openwrt/package/utils/C_script/src/one.c two.c three.c upto ten.c in the same path. Inside I have written Makefile to compile C files in order. Like

one: one.c
    $(CC) $(LDFLAG) -o one one.c
two: two.c
    $(CC) $(LDFLAG) -o two two.c

upto ten files. How to write Makefile in openWRT to compile 10 files individually and bring 10 individual ipk package and push all the 10 executable in /usr/local/bin.

0

There are 0 best solutions below