This commit is contained in:
violette 2025-08-21 22:24:02 -04:00
parent d8f573c678
commit 044d31fa47
8 changed files with 1111 additions and 62 deletions

25
gbafix/Makefile Normal file
View file

@ -0,0 +1,25 @@
# SPDX-License-Identifier: CC0-1.0
#
# SPDX-FileContributor: Antonio Niño Díaz, 2022
NAME := gbafix
CC := gcc
RM := rm -rf
# `make V=` builds the binary in verbose build mode
V := @
CFLAGS := -Wall -O3
.PHONY: all clean
all: $(NAME)
$(NAME): gbafix.c
@echo " HOSTCC $<"
$(V)$(CC) $(CFLAGS) -o $@ $<
clean:
@echo " CLEAN"
$(V)$(RM) $(NAME)