diff --git a/Makefile b/Makefile index f363e27..4cf7f84 100644 --- a/Makefile +++ b/Makefile @@ -32,9 +32,12 @@ all: mkdir -p $(BIN64_DIR) ifndef ARCH $(MAKE) clean_objects - $(MAKE) $(TARGET64) -e ARCH=64 + $(MAKE) -e ARCH=64 $(MAKE) clean_objects - $(MAKE) $(TARGET32) -e ARCH=32 + $(MAKE) -e ARCH=32 +else + $(MAKE) clean_objects + $(MAKE) $(TARGET) endif install: diff --git a/include/glez.h b/include/glez.h index 2e7db65..fb60432 100644 --- a/include/glez.h +++ b/include/glez.h @@ -47,8 +47,8 @@ void glez_resize(int width, int height); /* Helper functions */ -static inline glez_rgba_t -glez_rgba(unsigned char r, unsigned char g, unsigned char b, unsigned char a) +static inline glez_rgba_t glez_rgba(unsigned char r, unsigned char g, + unsigned char b, unsigned char a) { glez_rgba_t result; result.r = (float) r / 255.0f;