Changeset 280 in kBuild for branches/GNU/src/gmake/Makefile.am
- Timestamp:
- May 16, 2005 4:54:02 PM (19 years ago)
- Location:
- branches/GNU/src/gmake
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
Makefile.am (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gmake
- Property svn:ignore
-
old new 34 34 README.DOS 35 35 README.W32 36 README.OS2 36 37 aclocal.m4 37 38 autom4te.cache
-
- Property svn:ignore
-
branches/GNU/src/gmake/Makefile.am
r153 r280 4 4 ACLOCAL_AMFLAGS = -I config 5 5 6 SUBDIRS = glob config po doc 6 # Only process if target is MS-Windows 7 if WINDOWSENV 8 MAYBE_W32 = w32 9 W32INC = -I $(top_srcdir)/w32/include 10 W32LIB = -Lw32 -lw32 11 endif 12 13 SUBDIRS = glob config po doc $(MAYBE_W32) 7 14 8 15 bin_PROGRAMS = make … … 20 27 variable.c version.c vpath.c hash.c 21 28 22 EXTRA_make_SOURCES = remote-stub.c remote-cstms.c29 EXTRA_make_SOURCES = vmsjobs.c remote-stub.c remote-cstms.c 23 30 24 31 noinst_HEADERS = commands.h dep.h filedef.h job.h make.h rule.h variable.h \ … … 26 33 27 34 make_LDADD = @LIBOBJS@ @ALLOCA@ $(GLOBLIB) @GETLOADAVG_LIBS@ @LIBINTL@ 35 # Only process if target is MS-Windows 36 if WINDOWSENV 37 make_LDADD += $(W32LIB) 38 endif 28 39 29 40 man_MANS = make.1 … … 32 43 33 44 AM_CPPFLAGS = $(GLOBINC) 45 # Only process if target is MS-Windows 46 if WINDOWSENV 47 AM_CPPFLAGS += $(W32INC) 48 endif 34 49 35 50 … … 115 130 .PHONY: check-loadavg check-regression 116 131 117 check-loadavg: loadavg 132 check-loadavg: loadavg$(EXEEXT) 118 133 @echo The system uptime program believes the load average to be: 119 134 -uptime 120 135 @echo The GNU load average checking code thinks: 121 -./loadavg 136 -./loadavg$(EXEEXT) 122 137 123 138 # The loadavg function is invoked during "make check" to test getloadavg. … … 158 173 # --------------- Maintainer's Section 159 174 175 # Tell automake that I haven't forgotten about this file and it will be 176 # created before we build a distribution (see maintMakefile in the CVS 177 # distribution). 178 179 README: 180 160 181 @MAINT_MAKEFILE@
Note:
See TracChangeset
for help on using the changeset viewer.

