Menu

[r95]: / Makefile  Maximize  Restore  History

Download this file

43 lines (35 with data), 1.0 kB

 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
dll = CLIPSLib
export dll
mono_env_vars = MONO_LOG_LEVEL=debug
list := $(shell dir CLIPSNet)
list := $(filter %.cs,$(list))
linux:
$(MAKE) -f Makefile1 cc=g++ lib_path_flag=-L target=LINUX shared_lib=lib$(dll).so lib_suffix=a lib_prefix=lib out_dir=bin librarian=g++
windows:
export target=WIN_MCW
export shared_lib=$(dll).dll
export lib_suffix=lib
export out_dir=bin
export librarian=lib
export lib_path_flag=/LIBPATH:
export lib_out_flag=/SUBSYSTEM:NATIVE /OUT:
export cc=
$(MAKE) -f Makefile1
clean clips-clean total-clean install uninstall:
$(MAKE) -f Makefile1 $@ cc=g++ lib_path_flag=-L target=LINUX shared_lib=lib$(dll).so lib_suffix=a lib_prefix=lib out_dir=bin librarian=g++
commit:
$(MAKE) -f Makefile1 clean
svn add Core/*.c
svn add Core/*.h
svn add CLIPSNet/*.cs
svn add CLIPSNet/*/*.cs
svn add CLIPSTest/*.cs
svn add CLIPSLib/*.cpp
svn add CLIPSLib/*.h
svn commit
update:
svn update
test:
echo $(windir)
run: linux bin/CLIPSTest.exe
cd bin && mono ./CLIPSTest.exe
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.