mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-25 17:27:18 +00:00
13 lines
208 B
Makefile
13 lines
208 B
Makefile
obj = kbc1126_ec_dump kbc1126_ec_insert
|
|
HOSTCC := $(if $(shell type gcc 2>/dev/null),gcc,cc)
|
|
|
|
all: $(obj)
|
|
|
|
%: %.c
|
|
$(HOSTCC) -Wall -o $@ $<
|
|
|
|
clean:
|
|
rm -f kbc1126_ec_dump kbc1126_ec_insert
|
|
|
|
.PHONY: all clean
|