Is there not a stray space in the original post?

mykernel<space>.bin

Might that explain?

On Sat, 4 Feb 2023 at 17:02, <[email protected]> wrote:
>
> Send Help-make mailing list submissions to
>         [email protected]
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         https://lists.gnu.org/mailman/listinfo/help-make
> or, via email, send a message with subject or body 'help' to
>         [email protected]
>
> You can reach the person managing the list at
>         [email protected]
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Help-make digest..."
>
>
> Today's Topics:
>
>    1. Re: Make reported an error "There are no rules to create
>       'mykernel. bin',  stop" (Paul Smith)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Fri, 03 Feb 2023 12:20:08 -0500
> From: Paul Smith <[email protected]>
> To: "[email protected]" <[email protected]>,
>         "[email protected]" <[email protected]>
> Subject: Re: Make reported an error "There are no rules to create
>         'mykernel. bin',  stop"
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset="UTF-8"
>
> On Fri, 2023-02-03 at 04:18 +0000, [email protected] wrote:
> > system:ubuntu22.10
> > I'm trying to make mykernel.bin,However, an error was reported. See
> > the title for details
> > This is my makefile code:
> > GPPPARAMS = -m32 -fno-use-cxa-atexit -fleading-underscore -fno-
> > exceptions -fno-builtin -nostdlib -fno-rtti
> >
> > ASPARAMS = --32
> >
> > LDPARAMS = -melf_i386
> >
> > objects = loader.o kernel.o
> >
> > %.o: %.cpp
> >
> >         g++ ${GPPPARAMS} -o $@ -c $<
> >
> > %.o: %.s
> >
> >         as ${ASPARAMS} -o $@ $<
> >
> > mykernel.bin: linker.ld ${objects}
> >
> >         ld ${LDPARAMS} -T $< -o $@ ${objects}
> >
> > install: mykernel.bin
> >         sudo cp $< /boot/mykernel.bin
>
> Please show (via cut and paste of the _exact_ text) the make command
> you typed and the error you got.  Also, please show the contents of the
> directory where you entered the "make" command (run "ls -l" or
> similar).
>
> Based on the information you've provided here the error you report
> cannot happen.  So there must be something else going on, that you've
> not shown us.
>
>
>
> ------------------------------
>
> Subject: Digest Footer
>
> _______________________________________________
> Help-make mailing list
> [email protected]
> https://lists.gnu.org/mailman/listinfo/help-make
>
>
> ------------------------------
>
> End of Help-make Digest, Vol 241, Issue 2
> *****************************************

Reply via email to