source: rtems/doc/tools/bmenu/Makefile @ 139b2e4a

4.104.114.84.95
Last change on this file since 139b2e4a was 139b2e4a, checked in by Joel Sherrill <joel.sherrill@…>, on 06/04/97 at 18:32:07

added CVS Id string

  • Property mode set to 100644
File size: 778 bytes
RevLine 
[ae68ff0]1#
2#  COPYRIGHT (c) 1996.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
[139b2e4a]6#  $Id$
7#
[ae68ff0]8
9CC=gcc
10#CFLAGS=-O4 -fomit-frame-pointer
11CFLAGS=-g
12
13#TEXINPUTS=/home/gnu/work/binutils-2.6/texinfo:. 
14PROG=bmenu
15
16all:  $(PROG)
17
18$(BASE).txt: $(BASE).d ./$(PROG)
19        ./$(PROG) $(BASE).d
20
21$(PROG): main.o chain.o
22        gcc main.o chain.o -o $(PROG)
23
24main.o: main.c base.h
25
26chain.o: chain.c
27
28info: c_user.texinfo timer.texi
29        makeinfo c_user.texinfo
30
31TESTER=init
32test: all
33        #rm -f timer.txt
34        #./bmenu -v timer.texi
35        cp ../user/$(TESTER).texi .
36        ./bmenu $(TESTER).texi
37        mv $(TESTER).txt $(TESTER).texi
38        makeinfo c_user.texinfo
39
40
41clean:
42        rm -f *.o $(PROG) *.txt core *.html
43        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
44        rm -f c_user c_user-* _*
45
Note: See TracBrowser for help on using the repository browser.