ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/experimental/host/sysinfo/Makefile
Revision: 1.2
Committed: Tue Nov 7 17:55:44 2000 UTC (23 years, 6 months ago) by tdb
Branch: MAIN
Changes since 1.1: +10 -17 lines
Log Message:
Updated the Makefile to include the new classes, and made it much simpler.

File Contents

# User Rev Content
1 tdb 1.2 # Makefile for sysinfo programs
2 tdb 1.1
3     CXXFLAGS += -g
4    
5 tdb 1.2 sysinfo: sysinfo.o hostname.o load.o
6     $(LINK.cc) -o $@ sysinfo.o hostname.o load.o
7 tdb 1.1
8 tdb 1.2 sysinfo.o: sysinfo.cc hostname.hh load.hh
9     hostname.o: hostname.cc hostname.hh
10     load.o: load.cc load.hh
11    
12     clean:
13     rm -f *.o
14     rm -f sysinfo