git.y1.nz

gbdk-2020

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

gbdk-lib/examples/sms/Makefile

      1 # Register all subdirectories in the project's root directory.
      2 SUBDIRS := $(wildcard */.)
      3 
      4 # Top-level phony targets.
      5 all clean compile.bat: $(SUBDIRS) FORCE
      6 # Similar to:
      7 # .PHONY: all clean
      8 # all clean: $(SUBDIRS)
      9 # GNU's .PHONY target is more efficient in that it explicitly declares non-files.
     10 
     11 # Recurse `make` into each subdirectory
     12 # Pass along targets specified at command-line (if any).
     13 $(SUBDIRS): FORCE
     14 	$(MAKE) -C $@ $(MAKECMDGOALS)
     15 
     16 # Force targets.
     17 FORCE:

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