summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAdriana Kobylak <anoo@us.ibm.com>2016-02-09 13:44:32 -0600
committerAdriana Kobylak <anoo@us.ibm.com>2016-02-09 15:24:15 -0600
commit9c75104bca4932f74c82ddac5c744f1bfc0ee1d0 (patch)
tree2a4a86d9993623ea7d07f6ce34fd1b6c9d3ca6fa /Makefile
parent1f26b5e502023161ba7c24f94a33e20d56b43d32 (diff)
downloadtalos-skeleton-9c75104bca4932f74c82ddac5c744f1bfc0ee1d0.tar.gz
talos-skeleton-9c75104bca4932f74c82ddac5c744f1bfc0ee1d0.zip
Implement new LED driver
Verification for the new LED driver is completed so time to replace the previous gpio implementation with the new one. This entails replacing the led_controller file with the led_controller_new file, updating the dbus interface name so that it is the same as the previous one, and updating the code with the new led names.
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 65787ff..49600ba 100755
--- a/Makefile
+++ b/Makefile
@@ -36,11 +36,8 @@ libopenbmc_intf: openbmc_intf.o
power_control: power_control_obj.o gpio.o object_mapper.o libopenbmc_intf
$(CC) -o bin/$@.exe obj/gpio.o obj/power_control_obj.o obj/object_mapper.o $(LDFLAGS) $(LIBS)
-led_controller: led_controller.o gpio.o object_mapper.o libopenbmc_intf
- $(CC) -o bin/$@.exe obj/gpio.o obj/led_controller.o obj/object_mapper.o $(LDFLAGS) $(LIBS)
-
-led_controller_new: led_controller_new.o
- $(CC) -o bin/$@.exe obj/led_controller_new.o $(LDFLAGS) $(LIBS) -lsystemd
+led_controller: led_controller.o
+ $(CC) -o bin/$@.exe obj/led_controller.o $(LDFLAGS) $(LIBS) -lsystemd
button_power: button_power_obj.o gpio.o object_mapper.o libopenbmc_intf
$(CC) -o bin/$@.exe obj/button_power_obj.o obj/gpio.o obj/object_mapper.o $(LDFLAGS) $(LIBS)
OpenPOWER on IntegriCloud