git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

gbdk-support/makebin/Makefile

      1 # makebin makefile
      2 
      3 ifndef TARGETDIR
      4 TARGETDIR = /opt/gbdk
      5 endif
      6 
      7 ifeq ($(OS),Windows_NT)
      8 	BUILD_OS := Windows_NT
      9 else
     10 	BUILD_OS := $(shell uname -s)
     11 endif
     12 
     13 # Target older macOS version than whatever build OS is for better compatibility
     14 ifeq ($(BUILD_OS),Darwin)
     15 	export MACOSX_DEPLOYMENT_TARGET=10.10
     16 endif
     17 
     18 CC = $(TOOLSPREFIX)gcc
     19 CFLAGS = -g3 -O0 -Wno-incompatible-pointer-types -DGBDKLIBDIR=\"$(TARGETDIR)\"
     20 LDFLAGS = -g3
     21 OBJ = makebin.o
     22 BIN = makebin
     23 
     24 all: $(BIN)
     25 
     26 $(BIN): $(OBJ)
     27 
     28 clean:
     29 	rm -f *.o $(BIN) *~
     30 	rm -f *.exe
     31 

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.