Search found 2 matches

by Batboyrocks900
Mon Jul 27, 2020 10:56 am
Forum: SNESdev
Topic: Makefile error 127 and empty variable name
Replies: 2
Views: 7767

Re: Makefile error 127 and empty variable name

Well, you have a dependency for bitmaps*, and it's declared as a phony, but there's no recipe for bitmaps. Did you delete that part? *all : bitmaps $(OUTPUT).sfc bitmaps is a dependency of all: There's one here... https://github.com/alekmaul/pvsneslib/blob/5589cd5219ccc089023e1e06cf2d4763afa8f238/s...
by Batboyrocks900
Mon Jul 27, 2020 8:40 am
Forum: SNESdev
Topic: Makefile error 127 and empty variable name
Replies: 2
Views: 7767

Makefile error 127 and empty variable name

When Compiling it there are two errors 1. Makefile:36: *** empty variable name. Stop. 2. make: *** [Makefile:57: all] Error 127 this makefile is apart of a template in pvsneslib # path to snesdev root directory (for emulators, devkitsnes, PVSNESLIB) export DEVKITSNES := D:\DeskTop\SNES\pvsneslib-mas...