On Sat, Nov 9, 2024 at 10:18 PM <pe...@easthope.ca> wrote: > > Retrieved utelnetd 0.1.11 from here. > https://public.pengutronix.de/software/utelnetd/ > > Installed gcc and tried make. > # make DEBUG=1 -f ./Makefile > make: Nothing to be done for 'all'. > # > > This is the "all" stanza in Makefile. > > all: $(PROGS) > > $(PROGS): $(OBJS) > $(CC) $(LDFLAGS) $(CFLAGS) $^ $(LDLIBS) -o $@ > $(STRIP) --remove-section=.comment --remove-section=.note $@ > > Is the problem in all? Elsewhere?
My guess is $PROGS is empty. But it is only a guess since the message is missing so much information. Maybe add a $(info $(PROGS)) before the 'all' recipe to see: $(info PROGS: $(PROGS)) all: $(PROGS) Jeff