mirror of
https://git.planet-casio.com/Lephenixnoir/GiteaPC.git
synced 2024-12-28 20:43:41 +01:00
20 lines
236 B
Text
20 lines
236 B
Text
|
# giteapc: version=1
|
||
|
|
||
|
ifneq ($(GITEAPC_CONFIG),)
|
||
|
include giteapc-config-$(GITEAPC_CONFIG).make
|
||
|
endif
|
||
|
|
||
|
configure:
|
||
|
@ true
|
||
|
|
||
|
build:
|
||
|
@ true
|
||
|
|
||
|
install:
|
||
|
@ make install
|
||
|
|
||
|
uninstall:
|
||
|
@ make uninstall
|
||
|
|
||
|
.PHONY: configure build install uninstall
|