source: rtems/doc/tools/bmenu/Makefile @ f70c6adc

4.104.114.84.95
Last change on this file since f70c6adc was f70c6adc, checked in by Joel Sherrill <joel.sherrill@…>, on 10/31/97 at 19:44:32

New test file.

  • Property mode set to 100644
File size: 824 bytes
Line 
1#
2#  COPYRIGHT (c) 1996.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
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 -u "DOCS UP" -p "DOCS PREV" -n "DOCS NEXT" -v testdoc.txt
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.