source: fact/tools/vchvtest/Makefile@ 12137

Last change on this file since 12137 was 12137, checked in by neise, 15 years ago
ja das war nur ein test
  • Property svn:executable set to *
File size: 411 bytes
Line 
1#
2# Makefile vchvtest
3#
4
5# i tu mal so als ob ich was wichtiges zu sagen hätte:x
6
7TARGET = vchvtest
8SOURCES = $(TARGET).cc HV.cc
9OBJECTS = $(addsuffix .o, $(basename $(SOURCES)))
10INCDIRS = -I.
11
12CPPFLAGS = -O3 -Wall -DOS_LINUX
13LIBS = -L /usr/lib/termcap/ -lstdc++ -lreadline -ltermcap
14
15$(TARGET): $(OBJECTS)
16 $(CC) $(CPPFLAGS) -o $@ $(OBJECTS) $(LIBS)
17
18clean:
19 @rm -f $(OBJECTS)
20 @rm -f *~
21 @rm -f $(TARGET)
Note: See TracBrowser for help on using the repository browser.