File: Makefile

package info (click to toggle)
jwchat 1.0%2Bdfsg-1.3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,944 kB
  • ctags: 372
  • sloc: perl: 479; xml: 462; java: 116; sh: 108; makefile: 54
file content (28 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (5)
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

all: install

po:
	@./scripts/extract-message-catalog.pl

install:
	@if [ ! -d ./htdocs ]; then \
		echo ""; \
		mkdir ./htdocs; \
		echo "Copying Stylesheets ..."; \
		cp ./src/*.css ./htdocs; \
		echo "Copying Images ...";\
		cp -r ./src/images ./htdocs;\
		echo ""; \
	fi
	@./scripts/templateparser.pl;
	@echo "Copying static files ...";
	@	./scripts/cpstatic.sh;
	@echo "Copying additional libs ...";
	@	./scripts/cplibs.sh;

clean:
	@rm -r ./htdocs
	@rm -r ./htdocs.*

.PHONY: clean po