-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
54 lines (37 loc) · 1.34 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
INSTDIR=/usr/opt/spectcl/3.4_005
# Skeleton makefile for 3.4
include $(INSTDIR)/etc/SpecTcl_Makefile.include
# If you have any switches that need to be added to the default c++ compilation
# rules, add them to the definition below:
USERCXXFLAGS=
#
# Uncomment the next line to enable reportage of bad events to stderr.
#USERCXXFLAGS=-DREPORT_BAD_EVENTS
# If you have any switches you need to add to the default c compilation rules,
# add them to the defintion below:
USERCCFLAGS=$(USERCXXFLAGS)
# If you have any switches you need to add to the link add them below:
USERLDFLAGS=
#
# Append your objects to the definitions below:
#
OBJECTS=MySpecTclApp.o CParamMapCommand.o \
CRateProcessor.o CRateList.o CRateCommand.o CFitButton.o \
CStackMapCommand.o CModuleUnpacker.o C785Unpacker.o CNADC2530Unpacker.o \
CStackUnpacker.o CMADC32Unpacker.o CRateEventProcessor.o \
CV1x90Unpacker.o CV977Unpacker.o CMASE.o CHINP.o CPSD.o \
CMarkerUnpacker.o
#
# Finally the makefile targets.
#
SpecTcl: $(OBJECTS)
$(CXXLD) -o SpecTcl $(OBJECTS) $(USERLDFLAGS) \
$(LDFLAGS)
clean:
rm -f $(OBJECTS) SpecTcl
depend:
makedepend $(USERCXXFLAGS) *.cpp *.c
help:
echo "make - Build customized SpecTcl"
echo "make clean - Remove objects from previous builds"
echo "make depend - Add dependencies to the Makefile. "