aboutsummaryrefslogtreecommitdiff
path: root/Makefile.vc
diff options
context:
space:
mode:
authorantirez <antirez>2005-02-26 23:03:00 +0000
committerantirez <antirez>2005-02-26 23:03:00 +0000
commite279cb23ed7b72fc173cc40382bc0b42f7c41ece (patch)
tree35698020c1a7876bef42910e88a429d8d593b062 /Makefile.vc
parentf7de4cb2a817aa17615cc31199a0a5abd621ad9d (diff)
downloadjimtcl-e279cb23ed7b72fc173cc40382bc0b42f7c41ece.zip
jimtcl-e279cb23ed7b72fc173cc40382bc0b42f7c41ece.tar.gz
jimtcl-e279cb23ed7b72fc173cc40382bc0b42f7c41ece.tar.bz2
removed to add it again without DOS line endings
Diffstat (limited to 'Makefile.vc')
-rw-r--r--Makefile.vc64
1 files changed, 0 insertions, 64 deletions
diff --git a/Makefile.vc b/Makefile.vc
deleted file mode 100644
index ef79e19..0000000
--- a/Makefile.vc
+++ /dev/null
@@ -1,64 +0,0 @@
-SRCDIR =.
-
-!ifdef DEBUG
-OUTDIR =Debug
-CFLAGS =-Od -Zi -GZ -MDd -D_DEBUG
-LDFLAGS=-debug:full -debugtype:cv
-!else
-OUTDIR =Release
-CFLAGS =-O2 -Op -Gs -MD -DNDEBUG
-LDFLAGS=-release -opt:ref -opt:icf,3
-!endif
-
-TMPDIR =$(OUTDIR)\Objects
-
-OBJS = \
- $(TMPDIR)\jim.obj
-
-CC =cl -nologo
-LD =link -nologo
-
-CFLAGS =$(CFLAGS) -W3 -GX -Fd$(TARGET:.dll=.pdb) -YX -Fp$(TMPDIR)^\
-INC =-I../metakit/include -I/opt/include
-DEFS =-DWIN32
-LIBS =
-
-
-all: jim
-jim: setup $(OUTDIR)\jim.exe
-
-$(OUTDIR)\jim.exe: $(OBJS)
- $(LD) $(LDFLAGS) -out:$@ $** $(LIBS)
-
-#-------------------------------------------------------------------------
-setup:
- @if not exist $(OUTDIR) mkdir $(OUTDIR)
- @if not exist $(TMPDIR) mkdir $(TMPDIR)
-
-
-test: testapp
- @if exist ztest.mk del ztest.mk >NUL
- @$(OUTDIR)\testapp.exe
- kviewer ztest.mk
-
-clean:
- @if exist $(TMPDIR) rmdir /q /s $(TMPDIR) >NUL
-
-realclean: clean
- @if exist $(OUTDIR) rmdir /q /s $(OUTDIR) >NUL
-
-#-------------------------------------------------------------------------
-
-.SUFFIXES:.c .cpp
-
-{$(SRCDIR)}.c{$(TMPDIR)}.obj::
- $(CC) $(CFLAGS) $(DEFS) $(INC) -Fo$(TMPDIR)^\ -c @<<
-$<
-<<
-
-{$(SRCDIR)}.cpp{$(TMPDIR)}.obj::
- $(CC) $(CFLAGS) $(DEFS) $(INC) -Fo$(TMPDIR)^\ -c @<<
-$<
-<<
-
-#-------------------------------------------------------------------------