1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/BBA1.5_platform/host_tools/send2omci/Makefile
2024-07-22 01:58:46 -03:00

15 lines
248 B
Makefile
Executable File

OBJS= send2omci.o
EXEC= send2omci
all: $(EXEC)
$(STRIP) $(EXEC)
.c.o:
$(CC) -c $(CFLAGS) $(DF_FLAGS) $<
$(EXEC): $(OBJS)
$(CC) $(OBJS) -o $@ $(CFLAGS) $(LDFLAGS)
$(STRIP) --strip-unneeded $(EXEC)
clean:
rm -f *.o *.a $(EXEC)