File: README.example

package info (click to toggle)
genparse 0.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 3,372 kB
  • ctags: 2,722
  • sloc: ansic: 8,795; cpp: 6,060; sh: 5,336; java: 578; yacc: 482; lex: 315; makefile: 310
file content (9 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
#!/bin/sh -e

# read the description file and create mycopy3_clp.c and mycopy3_clp.h
genparse -o mycopy3_clp mycopy3.gp

# compile the results
gcc -I. -g -O2 -c mycopy3_clp.c
gcc -I. -g -O2 -c mycopy3.c
gcc  -g -O2  -o mycopy3  mycopy3_clp.o mycopy3.o  -ll