File: Makefile.win

package info (click to toggle)
lua-logging 1.8.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 512 kB
  • sloc: makefile: 16; sh: 3
file content (12 lines) | stat: -rw-r--r-- 451 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12

LUA_DIR= c:\lua5.1\lua

LUAS= src\logging\console.lua src\logging\email.lua src\logging\file.lua src\logging\rolling_file.lua src\logging\socket.lua src\logging\sql.lua src/logging/nginx.lua src/logging/rsyslog.lua src/logging/envconfig.lua
ROOT_LUAS= src\logging.lua 

build clean:

install:
	IF NOT EXIST $(LUA_DIR)\logging mkdir $(LUA_DIR)\logging
	FOR %i IN ($(LUAS)) DO copy %i $(LUA_DIR)\logging
	FOR %i IN ($(ROOT_LUAS)) DO copy %i $(LUA_DIR)