blob: bb849742964cd5440b2fddeb191a3e3532b06ec9 (
plain) (
blame)
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
55
56
|
*** Makefile.in.orig Sun Apr 19 03:06:51 1998
--- Makefile.in Sat Jun 27 23:05:50 1998
***************
*** 40,49 ****
###
### directory for lclint libraries
! LIBDIR = @installdir@/lib
### directory for lclint standard imports
! IMPORTSDIR = @installdir@/imports
### directory for lclint binary
INSTALLDIR = @installdir@/bin
--- 40,49 ----
###
### directory for lclint libraries
! LIBDIR = @installdir@/share/lclint-2.4b/lib
### directory for lclint standard imports
! IMPORTSDIR = @installdir@/share/lclint-2.4b/imports
### directory for lclint binary
INSTALLDIR = @installdir@/bin
***************
*** 231,244 ****
dolibraries:
@echo '// Installing libraries in '$(LIBDIR)
@echo " (This will complain if the directory already exists, don't worry about it.)"
! -mkdir $(LIBDIR)
$(CP) $(LCLINTLIB)/* $(LIBDIR)
@echo '// Installed libraries.'
doimports:
@echo '// Installing imports in '$(IMPORTSDIR)
@echo " (This will complain if the directory already exists, don't worry about it.)"
! -mkdir $(IMPORTSDIR)
$(CP) $(LCLINTIMPORTS)/* $(IMPORTSDIR)
@echo '// Installed imports.'
--- 231,244 ----
dolibraries:
@echo '// Installing libraries in '$(LIBDIR)
@echo " (This will complain if the directory already exists, don't worry about it.)"
! -mkdir -p $(LIBDIR)
$(CP) $(LCLINTLIB)/* $(LIBDIR)
@echo '// Installed libraries.'
doimports:
@echo '// Installing imports in '$(IMPORTSDIR)
@echo " (This will complain if the directory already exists, don't worry about it.)"
! -mkdir -p $(IMPORTSDIR)
$(CP) $(LCLINTIMPORTS)/* $(IMPORTSDIR)
@echo '// Installed imports.'
|