mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-19 16:02:36 +02:00
18 lines
309 B
Text
18 lines
309 B
Text
OBJS := sotpctl.o
|
|
|
|
LIBS :=
|
|
|
|
|
|
$(EXE): $(OBJS)
|
|
$(CC) $(BCM_LD_FLAGS) -o $@ $(OBJS) -Wl,-rpath,$(LIBS)
|
|
|
|
|
|
binaryonly_prepare:
|
|
-cp $(EXE) $(mdir)/$(SAVED)
|
|
-$(MAKE) -f $(name) clean
|
|
rm -f $(mdir)/*.c $(mdir)/*.h $(mdir)/Makefile.fullsrc
|
|
|
|
|
|
# Generate and use dependencies.
|
|
CFLAGS += -MD
|
|
-include $(OBJS:%.o=%.d)
|