diff options
author | dh142964 <David.Hollister@Sun.COM> | 2009-09-30 18:56:19 -0600 |
---|---|---|
committer | dh142964 <David.Hollister@Sun.COM> | 2009-09-30 18:56:19 -0600 |
commit | 47b47c8ce30ead58d3d8a10f770a28fd1ca95047 (patch) | |
tree | b39847764ee1182bab5d2e2eb09045d50eeeab6c /usr/src/uts/intel/pmcs | |
parent | 45e032f763429a3bb9a3a524aaf7fd843110eead (diff) | |
download | illumos-joyent-47b47c8ce30ead58d3d8a10f770a28fd1ca95047.tar.gz |
6726110 pmcs driver (driver for thebe) (fix build race)
Diffstat (limited to 'usr/src/uts/intel/pmcs')
-rw-r--r-- | usr/src/uts/intel/pmcs/Makefile | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/usr/src/uts/intel/pmcs/Makefile b/usr/src/uts/intel/pmcs/Makefile index 24d111188b..ee52f64701 100644 --- a/usr/src/uts/intel/pmcs/Makefile +++ b/usr/src/uts/intel/pmcs/Makefile @@ -42,8 +42,6 @@ CONF_SRCDIR = $(UTSBASE)/common/io/scsi/adapters/pmcs WARLOCK_OUT = $(PMCS_OBJS:%.o=%.ll) WARLOCK_OK = $(MODULE).ok WLCMD_DIR = $(UTSBASE)/common/io/warlock -BLDREVHDR = ../../common/sys/scsi/adapters/pmcs/pmcs_bldrev.h -BLDREVHDR_T = ../../common/sys/scsi/adapters/pmcs/pmcs_bldrev.h.tmp # # Kernel Module Dependencies @@ -77,25 +75,11 @@ CPPFLAGS += $(PMCS_DRV_FLGS) \ # .KEEP_STATE: -all: ADDBUILDREV $(ALL_DEPS) - -ADDBUILDREV: - @$(ECHO) '#define PMCS_BUILD_VERSION "'`date '+v20%y%m%d'`\"> \ - $(BLDREVHDR_T); \ - if [ -f $(BLDREVHDR) ]; then \ - RD=`$(DIFF) $(BLDREVHDR) $(BLDREVHDR_T) || $(TRUE)`; \ - if [ ! -z "$$RD" ]; then \ - $(MV) $(BLDREVHDR_T) $(BLDREVHDR); \ - fi; \ - else \ - $(MV) $(BLDREVHDR_T) $(BLDREVHDR); \ - fi; \ - $(RM) $(BLDREVHDR_T) +all: $(ALL_DEPS) def: $(DEF_DEPS) clean: $(CLEAN_DEPS) - -$(RM) $(BLDREVHDR) clobber: $(CLOBBER_DEPS) @@ -105,7 +89,7 @@ modlintlib: $(MODLINTLIB_DEPS) clean.lint: $(CLEAN_LINT_DEPS) -install: ADDBUILDREV $(INSTALL_DEPS) +install: $(INSTALL_DEPS) # # Include common targets. |