mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
16 lines
279 B
Makefile
Executable file
16 lines
279 B
Makefile
Executable file
all: fpmake
|
|
${CURDIR}/fpmake --verbose
|
|
|
|
clean: fpmake
|
|
${CURDIR}/fpmake clean --verbose
|
|
|
|
plugins: fpmake
|
|
${CURDIR}/fpmake plugins --verbose
|
|
|
|
components: fpmake
|
|
${CURDIR}/fpmake components --verbose
|
|
|
|
fpmake:
|
|
fpc fpmake.pp
|
|
|
|
.PHONY: all clean plugins components
|