https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: d29e29f030a5ba52e21820db4d63042c90cedb54 authored by Daniel Fort on 01 May 2018, 19:49:13 UTC
Closed branch lua_fix_1200D.102
Tip revision: d29e29f
Makefile

# define the module name - make sure name is max 8 characters
MODULE_NAME=tinypy
MODULE_OBJS=tinypy-main.o

# some compile hacks
MODULE_CFLAGS += -fno-short-double

# include make environment
include ../Makefile.modules

all:: tinypy-desktop

clean::
	$(call rm_files, tinypy-desktop)

tinypy-desktop: tinypy-desktop.c tinypy.c
	gcc tinypy-desktop.c -o tinypy-desktop -lm -g
back to top