Skip to content

Commit

Permalink
Fixing makefile for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Aitor Gómez Goiri committed May 12, 2014
1 parent 2a7cb82 commit 214098d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions library-src/makefile.win
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
JAVA_INCLUDE = $(JAVA_HOME)include
JAVA_LIB = $(JAVA_HOME)lib
JAVA_INCLUDE = $(JAVA_HOME)\include
JAVA_LIB = $(JAVA_HOME)\lib

OBJS = agenda.obj analysis.obj argacces.obj bload.obj bmathfun.obj bsave.obj \
classcom.obj classexm.obj classfun.obj classinf.obj classini.obj \
Expand Down Expand Up @@ -33,10 +33,10 @@ OBJS = agenda.obj analysis.obj argacces.obj bload.obj bmathfun.obj bsave.obj \
utility.obj watch.obj exceptions.obj net_sf_clipsrules_jni_Environment.obj

.c.obj :
cl -c -DWIN_MVC -DALLOW_ENVIRONMENT_GLOBALS=0 /I$(JAVA_INCLUDE) /I$(JAVA_INCLUDE)\win32" $<
cl -c -DWIN_MVC -DALLOW_ENVIRONMENT_GLOBALS=0 /I"$(JAVA_INCLUDE)" /I"$(JAVA_INCLUDE)\win32" $<

CLIPSJNI.dll : $(OBJS)
link /libpath:$(JAVA_LIB) *.obj /dll /out:CLIPSJNI.dll
link /libpath:"$(JAVA_LIB)" *.obj /dll /out:CLIPSJNI.dll

net_sf_clipsrules_jni_Environment.obj: net_sf_clipsrules_jni_Environment.c setup.h envrnmnt.h \
symbol.h usrsetup.h clips.h argacces.h \
Expand Down

0 comments on commit 214098d

Please sign in to comment.