Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mancausoft committed Jan 12, 2025
1 parent 5e3cd13 commit db7590e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
CC ?= arm-linux-gnueabihf-gcc
CFLAGS ?= -O2 -Wall
LDFLAGS ?=
SYSROOT ?= ../sysroot
SYSROOT ?= sysroot
TARGET ?= snake_animation

# Percorsi
INCLUDES ?= -I raylib/src/ -nostdinc -I ../sysroot/usr/include -I . -I ../sysroot/usr/lib/gcc/arm-linux-gnueabihf/8/include -I ../sysroot/usr/include/arm-linux-gnueabihf/ -I ../sysroot/usr/include/libdrm -I ../sysroot/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/
LIBS ?= -L$(SYSROOT)/usr/lib -L$(SYSROOT)/lib -lraylib -lGL -lm -ldrm -lgbm -lEGL -L ../raylib/src/ -o snake
INCLUDES ?= -I raylib/src/ -nostdinc -I sysroot/usr/include -I sysroot/usr/lib/gcc/arm-linux-gnueabihf/8/include -I sysroot/usr/include/arm-linux-gnueabihf/ -I sysroot/usr/include/libdrm -I sysroot/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/
LIBS ?= -L$(SYSROOT)/usr/lib -L$(SYSROOT)/lib -lraylib -lGL -lm -ldrm -lgbm -lEGL -L raylib/src/ -o snake

# Regole
all: $(TARGET)
Expand Down

0 comments on commit db7590e

Please sign in to comment.