mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2025-12-06 05:32:02 +01:00
Generate dependency files so that when changing one file only stuff dependant on that file gets rebuilt. Avoid cleaning the whole thing on every small change
38 lines
2 KiB
Makefile
38 lines
2 KiB
Makefile
.PHONY: install
|
|
install:
|
|
install -d -g bin -o root -m 0775 $(DATADIR)
|
|
install -g bin -o root -m 0664 CCS_Hosts.txt $(DATADIR)
|
|
install -g bin -o root -m 0664 DCS_Hosts.txt $(DATADIR)
|
|
install -g bin -o root -m 0664 DExtra_Hosts.txt $(DATADIR)
|
|
install -g bin -o root -m 0664 DPlus_Hosts.txt $(DATADIR)
|
|
install -g bin -o root -m 0664 TIME_de_DE.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 TIME_de_DE.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 TIME_en_GB.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 TIME_en_GB.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 TIME_en_US.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 TIME_en_US.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 TIME_fr_FR.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 TIME_fr_FR.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 TIME_se_SE.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 TIME_se_SE.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 de_DE.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 de_DE.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 dk_DK.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 dk_DK.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 en_GB.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 en_GB.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 en_US.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 en_US.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 es_ES.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 es_ES.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 fr_FR.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 fr_FR.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 it_IT.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 it_IT.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 no_NO.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 no_NO.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 pl_PL.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 pl_PL.indx $(DATADIR)
|
|
install -g bin -o root -m 0664 se_SE.ambe $(DATADIR)
|
|
install -g bin -o root -m 0664 se_SE.indx $(DATADIR)
|