Created
July 29, 2023 05:53
-
-
Save harsha5500/d3517434a18ed8dd53309ab153891ca1 to your computer and use it in GitHub Desktop.
Makefile for Macos M1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Makefile template to compile SLD2 sources on Apple m1 with compile and installed libraries | |
all: | |
arch -arm64 cc -c src/filehandler.c -I include | |
arch -arm64 cc -c src/main.c -I include -I /usr/local/include/SDL2 | |
arch -arm64 cc -o hl1038 main.o filehandler.o -L /usr/local/lib -lsdl2 -lsdl2_image -lsdl2_ttf | |
clean: | |
rm filehandler.o | |
rm main.o | |
rm hl1038 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment