ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/root-tail/Makefile.simple
Revision: 1.2
Committed: Wed Aug 27 20:05:59 2003 UTC (23 years, 1 month ago) by gashuffer
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
Removed Makefile.simple - superceded by Makefile

File Contents

# User Rev Content
1 pcg 1.1 COPTS = -g -O2
2    
3     CFLAGS = -Wall $(COPTS)
4    
5     LDFLAGS = -L/usr/X11R6/lib -lX11
6    
7     all: root-tail
8    
9     root-tail: root-tail.c config.h
10     $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
11    
12     clean:
13     rm -f root-tail
14