Last change
on this file since 40 was 14, checked in by lstark, 16 years ago |
first version of hvcontrol added
|
File size:
466 bytes
|
Line | |
---|
1 | #
|
---|
2 | # Makefile
|
---|
3 | #
|
---|
4 |
|
---|
5 | include ../Makefile.general
|
---|
6 |
|
---|
7 | INCDIRS = -I. -I/usr/local/include
|
---|
8 |
|
---|
9 | CC_SOURCES = $(shell ls *.cc)
|
---|
10 | CC_SOURCES := $(notdir $(CC_SOURCES))
|
---|
11 | CC_OBJECTS = $(CC_SOURCES:%.cc=%.o)
|
---|
12 |
|
---|
13 | C_SOURCES = $(shell ls *.c)
|
---|
14 | C_SOURCES := $(notdir $(C_SOURCES))
|
---|
15 | C_OBJECTS = $(C_SOURCES:%.c=%.o)
|
---|
16 |
|
---|
17 | OBJECTS = $(CC_OBJECTS) $(C_OBJECTS)
|
---|
18 | SOURCES = $(CC_SOURCES) $(C_SOURCES)
|
---|
19 |
|
---|
20 | all: $(OBJECTS)
|
---|
21 |
|
---|
22 | include ../Makefile.rules
|
---|
23 |
|
---|
24 | clean: rmobj rmdep
|
---|
25 |
|
---|
26 | mrproper: clean rmbak
|
---|
27 |
|
---|
28 |
|
---|
29 |
|
---|
30 |
|
---|
31 |
|
---|
32 |
|
---|
33 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.