mirror of
https://github.com/love2d/love-android.git
synced 2026-08-21 05:00:22 +02:00
added dependencies and build files (loosely inspired by Sebastian Dorda's love-native-android)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
SHELL = /bin/sh
|
||||
|
||||
CFLAGS = -g -O4 -fomit-frame-pointer -Wall -I../include
|
||||
|
||||
testcms.o: testcms.c
|
||||
|
||||
testcms: testcms.o ../src/liblcms.a
|
||||
$(CC) $(CFLAGS) testcms.o ../src/liblcms.a -o $@ -lm
|
||||
|
||||
all: testcms test
|
||||
|
||||
test: testcms
|
||||
./testcms
|
||||
|
||||
install:
|
||||
# Nothing to install
|
||||
|
||||
clean:
|
||||
-rm testcms.o testcms testcms.exe
|
||||
|
||||
|
||||
Reference in New Issue
Block a user