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