File: compile.secure

package info (click to toggle)
mathomatic 12.6.3-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 960 kB
  • ctags: 569
  • sloc: ansic: 14,962; makefile: 129; sh: 42; python: 33; java: 17
file content (6 lines) | stat: -rwxr-xr-x 349 bytes parent folder | download
1
2
3
4
5
6
#!/bin/sh
# Shell script for creating the executable "mathomatic_secure".
# The result can safely be used as a telnet app or CGI program.

cc -s -O -DUNIX -DREADLINE -DVERSION=\"`cat VERSION`\" -DSECURE -DTIMEOUT_SECONDS=3600 *.c -lm -lreadline -lncurses -o mathomatic_secure && echo mathomatic_secure created.
make clean # for any subsequent makes