mirror of
https://github.com/moparisthebest/Simba
synced 2025-02-16 15:20:09 -05:00
17 lines
322 B
Makefile
17 lines
322 B
Makefile
![]() |
|
||
|
.PHONY: default clean
|
||
|
|
||
|
docunits := os_linux dtm mufasatypes
|
||
|
coreunits := os_linux dtm mufasatypes
|
||
|
|
||
|
default:
|
||
|
|
||
|
fpdoc --package=Simba \
|
||
|
`echo $(docunits) | sed -r 's/\w+/--descr=&.xml/g'` \
|
||
|
`echo $(coreunits) | sed -r 's/\w+/--input=..\/Units\/MMLCore\/&.pas/g'` \
|
||
|
--output=simbafpcdoc/
|
||
|
|
||
|
|
||
|
clean:
|
||
|
rm -rf simbafpcdoc
|