1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
ROOT = ../
COMMANDS_DIR := $(ROOT)src/commands/
EVENTS_DIR := $(ROOT)src/events/
SRC_DIR := $(ROOT)src/
include $(ROOT)options.mk
include common.mk
all: main
include targets/merge.mk
main: $(PKG).pot $(POFILES) $(MOFILES)
$(PKG).pot:
$(Q) $(XGETTEXT) $(XGTFLAGS) $(INPUTFILES)
include targets/lang/de.mk
include targets/lang/fi.mk
include targets/lang/fr.mk
include targets/lang/sv.mk
clean:
$(E) " CLEAN"
$(RM) $(PKG).pot
$(RM) $(MOFILES)
$(RM) swirc-locales-*.cab
$(RM) -R swirc-locales-*
|