File: Makefile.win

package info (click to toggle)
lua-logging 1.1.4-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 244 kB
  • ctags: 45
  • sloc: makefile: 10
file content (13 lines) | stat: -rw-r--r-- 418 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
# $Id: Makefile.win,v 1.4 2007/07/30 21:40:17 carregal Exp $

LUA_DIR= c:\lua5.1\lua

LUAS= src\logging\console.lua src\logging\email.lua src\logging\file.lua src\logging\socket.lua src\logging\sql.lua
ROOT_LUAS= src\logging\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)