- Afegit mòdul jshader. - Afegit shader al arxiu de dades - Actualitzat makefile per a la ocasió - Afegit lo de afegir caràcter 0 al final si es vol en jfile - Llevat el flag d'executable que tenien tots els arxius, jo que se perqué
11 lines
183 B
Makefile
11 lines
183 B
Makefile
TARGET=aee
|
|
linux:
|
|
g++ *.cpp -lSDL2 -lSDL2_mixer -lGL -o $(TARGET)
|
|
|
|
windows:
|
|
g++ *.cpp -lmingw32 -lSDL2 -lSDL2_mixer -lopengl32 -mwindows -o $(TARGET)
|
|
|
|
clean:
|
|
rm -rf ./$(TARGET)
|
|
|