Changeset 5610
- Timestamp:
- 01/19/09 16:11:33 (4 years ago)
- Location:
- i2c-tools/trunk
- Files:
-
- 2 modified
-
Makefile (modified) (1 diff)
-
tools/Module.mk (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
i2c-tools/trunk/Makefile
r5608 r5610 37 37 EXTRA := 38 38 #EXTRA += py-smbus 39 SRCDIRS := eeprom includestub tools $(EXTRA)39 SRCDIRS := include eeprom stub tools $(EXTRA) 40 40 include $(SRCDIRS:%=%/Module.mk) -
i2c-tools/trunk/tools/Module.mk
r5594 r5610 36 36 # 37 37 38 $(TOOLS_DIR)/i2cdetect.o: $(TOOLS_DIR)/i2cdetect.c $(TOOLS_DIR)/i2cbusses.h 38 $(TOOLS_DIR)/i2cdetect.o: $(TOOLS_DIR)/i2cdetect.c $(TOOLS_DIR)/i2cbusses.h $(INCLUDE_DIR)/linux/i2c-dev.h 39 39 $(CC) $(CFLAGS) $(TOOLS_CFLAGS) -c $< -o $@ 40 40 41 $(TOOLS_DIR)/i2cdump.o: $(TOOLS_DIR)/i2cdump.c $(TOOLS_DIR)/i2cbusses.h $(TOOLS_DIR)/util.h 41 $(TOOLS_DIR)/i2cdump.o: $(TOOLS_DIR)/i2cdump.c $(TOOLS_DIR)/i2cbusses.h $(TOOLS_DIR)/util.h $(INCLUDE_DIR)/linux/i2c-dev.h 42 42 $(CC) $(CFLAGS) $(TOOLS_CFLAGS) -c $< -o $@ 43 43 44 $(TOOLS_DIR)/i2cset.o: $(TOOLS_DIR)/i2cset.c $(TOOLS_DIR)/i2cbusses.h $(TOOLS_DIR)/util.h 44 $(TOOLS_DIR)/i2cset.o: $(TOOLS_DIR)/i2cset.c $(TOOLS_DIR)/i2cbusses.h $(TOOLS_DIR)/util.h $(INCLUDE_DIR)/linux/i2c-dev.h 45 45 $(CC) $(CFLAGS) $(TOOLS_CFLAGS) -c $< -o $@ 46 46 47 $(TOOLS_DIR)/i2cget.o: $(TOOLS_DIR)/i2cget.c $(TOOLS_DIR)/i2cbusses.h $(TOOLS_DIR)/util.h 47 $(TOOLS_DIR)/i2cget.o: $(TOOLS_DIR)/i2cget.c $(TOOLS_DIR)/i2cbusses.h $(TOOLS_DIR)/util.h $(INCLUDE_DIR)/linux/i2c-dev.h 48 48 $(CC) $(CFLAGS) $(TOOLS_CFLAGS) -c $< -o $@ 49 49 50 $(TOOLS_DIR)/i2cbusses.o: $(TOOLS_DIR)/i2cbusses.c $(TOOLS_DIR)/i2cbusses.h 50 $(TOOLS_DIR)/i2cbusses.o: $(TOOLS_DIR)/i2cbusses.c $(TOOLS_DIR)/i2cbusses.h $(INCLUDE_DIR)/linux/i2c-dev.h 51 51 $(CC) $(CFLAGS) $(TOOLS_CFLAGS) -c $< -o $@ 52 52
