mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-05 00:45:14 -05:00
31 lines
1.3 KiB
Makefile
31 lines
1.3 KiB
Makefile
#$ fpc -MObjFPC -Scgi -O2 -OoREGVAR -gl -vewnhi -l -Fu../../Units/MMLCore/ -Fu../../Units/MMLAddon/ -Fu../../Units/PascalScript/ -Fu../../Units/Misc/ -Fu../../../lazarus/components/synedit/units/x86_64-linux/ -Fu../../../lazarus/ideintf/units/x86_64-linux/ -Fu../../../lazarus/lcl/units/x86_64-linux/ -Fu../../../lazarus/lcl/units/x86_64-linux/gtk2/ -Fu../../../lazarus/packager/units/x86_64-linux/ -Fu. -oSAMufasaGUI -dUseCThreads -dM_MEMORY_DEBUG -dLCL -dLCLgtk2 project1.lpr
|
|
|
|
.PHONY: default clean
|
|
|
|
#Set these ----------
|
|
platform := i386-win32
|
|
widgetset := win32
|
|
lazaruspath := "C:\path\to\lazarus"
|
|
|
|
CC := fpc
|
|
build := $(CC)
|
|
binary := SAMufasaGUI
|
|
flags := -MObjFPC -Scgi -O2 -OoREGVAR -gl -vewnhi -l -Fu.
|
|
defines := $(platformdefines) -dM_MEMORY_DEBUG -dLCL -dLCL$(widgetset)
|
|
units := -Fu../../Units/MMLCore/ -Fu../../Units/MMLAddon/ -Fu../../Units/PascalScript/ -Fu../../Units/Misc/
|
|
|
|
|
|
|
|
lclplatpath := $(lazaruspath)/lcl/units/$(platform)/
|
|
|
|
lazarusunits := -Fu$(lazaruspath)/components/synedit/units/$(platform)/ -Fu$(lazaruspath)ideintf/units/$(platform)/ -Fu$(lclplatpath) -Fu$(lclplatpath)$(widgetset)/ -Fu$(lazaruspath)/packager/units/$(platform)/
|
|
|
|
default: $(binary)
|
|
|
|
clean:
|
|
#Zoek zelf ff uit
|
|
del $(binary)
|
|
|
|
$(binary):
|
|
$(CC) $(flags) $(units) $(lazarusunits) -o$(binary) $(defines) project1.lpr
|