~ubuntu-branches/ubuntu/quantal/less/quantal

« back to all changes in this revision

Viewing changes to Makefile.o2e

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Schoepf
  • Date: 2002-04-04 16:43:52 UTC
  • Revision ID: james.westby@ubuntu.com-20020404164352-qldq048yoc7x5sd5
Tags: upstream-374
ImportĀ upstreamĀ versionĀ 374

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Makefile for less.
 
2
# OS/2 version, for emx+gcc compiler
 
3
 
 
4
#### Start of system configuration section. ####
 
5
 
 
6
CC = gcc -Zomf
 
7
CFLAGS = -I. -O2 -Wall
 
8
LDFLAGS = -s -Zcrtdll
 
9
LIBS = -ltermcap
 
10
O = obj
 
11
 
 
12
#### End of system configuration section. ####
 
13
 
 
14
.SUFFIXES: .c .${O}
 
15
 
 
16
# This rule allows us to supply the necessary -D options
 
17
# in addition to whatever the user asks for.
 
18
.c.${O}:
 
19
        ${CC} -c ${CPPFLAGS} ${CFLAGS} $<
 
20
 
 
21
OBJ =   main.${O} screen.${O} brac.${O} ch.${O} charset.${O} cmdbuf.${O} \
 
22
        command.${O} decode.${O} edit.${O} filename.${O} forwback.${O} \
 
23
        help.${O} ifile.${O} input.${O} jump.${O} line.${O} linenum.${O} \
 
24
        lsystem.${O} mark.${O} optfunc.${O} option.${O} opttbl.${O} os.${O} \
 
25
        output.${O} position.${O} prompt.${O} search.${O} signal.${O} \
 
26
        tags.${O} ttyin.${O} version.${O}  regexp.${O}
 
27
 
 
28
all:    less.exe lesskey.exe scrsize.exe
 
29
 
 
30
less.exe: ${OBJ}
 
31
        ${CC} ${OBJ} -o $@ ${LDFLAGS} ${LIBS}
 
32
 
 
33
lesskey.exe: lesskey.${O} version.${O}
 
34
        ${CC} lesskey.${O} version.${O} -o $@ ${LDFLAGS}
 
35
 
 
36
scrsize.exe: scrsize.c
 
37
        ${CC} ${CFLAGS} -D__ST_MT_ERRNO__ -s -Zmtd -lX11 $<
 
38
 
 
39
${OBJ}: defines.h less.h
 
40
 
 
41
defines.h: defines.o2
 
42
        copy defines.o2 defines.h