mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 02:47:55 +02:00
14 lines
217 B
Plaintext
14 lines
217 B
Plaintext
.PHONY: distclean clean install
|
|
|
|
all: Makefile.pkg
|
|
|
|
Makefile.pkg: Makefile.fpc
|
|
fpcmake -Tall -s -o Makefile.pkg Makefile.fpc
|
|
|
|
distclean:
|
|
echo Nothing to do.
|
|
clean:
|
|
echo Nothing to do.
|
|
install:
|
|
echo Nothing to do.
|