File: buildmsc.bat

package info (click to toggle)
deutex 4.4.902-13
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,120 kB
  • sloc: ansic: 10,794; sh: 424; makefile: 340; perl: 145; csh: 4
file content (19 lines) | stat: -rw-r--r-- 615 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@echo off
rem buildmsc.bat - build DeuTex with MSC
rem AYM 1999-09-09

cd src
echo Generating config.h
echo #undef HAVE_INTTYPES		>config.h
echo #undef HAVE_SNPRINTF		>>config.h
echo typedef signed char    int8_t;	>>config.h
echo typedef short          int16_t;	>>config.h
echo typedef long           int32_t;	>>config.h
echo typedef unsigned char  uint8_t;	>>config.h
echo typedef unsigned short uint16_t;	>>config.h
echo typedef unsigned long  uint32_t;	>>config.h
echo Building DeuTex
cl -AH -W2 -DDeuTex -Fe..\deutex.exe *.c
echo Building DeuSF
cl -AH -W2 -DDeuSF  -Fe..\deusf.exe  *.c
cd ..