source: fact/tools/hvMCUtest/Makefile

Last change on this file was 12139, checked in by neise, 13 years ago
initial commit
  • Property svn:executable set to *
File size: 343 bytes
Line 
1#
2# Makefile vchvtest
3#
4TARGET = hvMCUtest
5SOURCES = $(TARGET).cc HV.cc
6OBJECTS = $(addsuffix .o, $(basename $(SOURCES)))
7INCDIRS = -I.
8
9CPPFLAGS = -O3 -Wall
10LIBS = -L /usr/lib/termcap/ -lstdc++ -lreadline -ltermcap
11
12
13$(TARGET): $(OBJECTS)
14 $(CC) $(CPPFLAGS) -o $@ $(OBJECTS) $(LIBS)
15
16clean:
17 @rm -f $(OBJECTS)
18 @rm -f *~
19 @rm -f $(TARGET)
Note: See TracBrowser for help on using the repository browser.