source: hvcontrol/src/Makefile@ 75

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