mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-05 02:32:31 +01:00
2e478f1b5a
Written by @mniip
30 lines
356 B
Makefile
30 lines
356 B
Makefile
if DO_LUA
|
|
lua = lua
|
|
endif
|
|
|
|
if DO_PYTHON
|
|
pythondir = python
|
|
endif
|
|
|
|
if DO_PERL
|
|
perldir = perl
|
|
endif
|
|
|
|
if DO_DOAT
|
|
doatdir = doat
|
|
endif
|
|
|
|
if DO_FISHLIM
|
|
fishlimdir = fishlim
|
|
endif
|
|
|
|
if DO_CHECKSUM
|
|
checksumdir = checksum
|
|
endif
|
|
|
|
if DO_SYSINFO
|
|
sysinfodir = sysinfo
|
|
endif
|
|
|
|
SUBDIRS = $(lua) $(pythondir) $(perldir) $(checksumdir) $(doatdir) $(fishlimdir) $(sysinfodir)
|