File: makefile-head

package info (click to toggle)
scheme2c 2011.07.26-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,760 kB
  • sloc: ansic: 62,439; lisp: 15,686; asm: 851; makefile: 673; sh: 19; csh: 9
file content (28 lines) | stat: -rw-r--r-- 443 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
#
# This is the header file for constructing make files for LINUX.
#

# Default flags to use when invoking the C compiler.

CFLAGS = -Wall -O2 -finline-functions -fno-math-errno -frename-registers -fomit-frame-pointer -m32
LDFLAGS = -m32 -lsigsegv
CC = gcc

# Assembly language object files.

Aruntime = linux.o

# Profiled library

Plib =

# Installation tools

RANLIB = ranlib

# X library

XLIB = -lX11
XLIBCFLAGS =

# End of LINUX header.