File: Makefile.options

package info (click to toggle)
abacus 0.9.13-4
  • links: PTS
  • area: main
  • in suites: potato
  • size: 6,308 kB
  • ctags: 5,120
  • sloc: ansic: 27,540; cpp: 11,426; tcl: 7,564; makefile: 386; yacc: 327; lex: 265; sh: 221
file content (32 lines) | stat: -rw-r--r-- 661 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# Make variables for the Abacus, edit to suit system, taste or mood :)
#

# C compiler
CC = gcc

# C++ compiler
CCC = g++

# C++ compiler running only the pre-processing stage
CPP=g++ -E

# Grammar generator - e.g. bison,yacc
YACC = bison

# Lexical scanner - e.g. flex,lex
LEX = flex

# Favourite flags for favourite compiler
CCFLAGS = -g

# Please don't change the next three lines unless you know what you are doing..
AROPTIONS = rc
IDIR = ../include
LIBDIR = ../lib

# Add extra include dirs here
IFLAGS = -I$(IDIR)

# Add extra directories where you want the abacus to search for libraries here
LFLAGS = -L/usr/local/lib -L/usr/X11R6/lib -L$(LIBDIR) -L.