source:
fact/tools/hvMCUtest/Makefile
Last change on this file was 12139, checked in by , 13 years ago | |
---|---|
|
|
File size: 343 bytes |
Line | |
---|---|
1 | # |
2 | # Makefile vchvtest |
3 | # |
4 | TARGET = hvMCUtest |
5 | SOURCES = $(TARGET).cc HV.cc |
6 | OBJECTS = $(addsuffix .o, $(basename $(SOURCES))) |
7 | INCDIRS = -I. |
8 | |
9 | CPPFLAGS = -O3 -Wall |
10 | LIBS = -L /usr/lib/termcap/ -lstdc++ -lreadline -ltermcap |
11 | |
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.