https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 1f7e3ce8c2262b99d55478832cc4719270036b2e authored by alex@thinkpad on 05 February 2017, 00:37:58 UTC
Function task annotations (autogenerated).
Tip revision: 1f7e3ce
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