I dunno that this makes it any easier...

I tried splitting up the sources to speed
up some compiling... but it didn't help.
I dunno that it's more readable this way.

I'm checkpointing this just in case.
This commit is contained in:
2026-01-26 03:47:52 -05:00
parent 9fca970fc5
commit c368696cc2
11 changed files with 279 additions and 200 deletions

View File

@ -1,4 +1,7 @@
OBJECTS := power_console.o power_console_main.o
OBJECTS= power_console.o power_console_main.o
OBJECTS+= MouseWheelSlider.o ConfigFile.o power_profile.o
OBJECTS+= backlight.o
X_INSTALL_DIR := /usr/X11R6
LINKOPTS := -L$(X_INSTALL_DIR)/lib -lfltk -lXext -lX11 -lm
FLUID := fluid
@ -26,5 +29,7 @@ power_console_main.o: power_console_main.cc power_console.h power_console.h
power_console.h: power_console.fluid
$(FLUID) -c power_console.fluid
power_console.cxx: power_console.h
power_console.o: power_console.h power_console.cxx
$(CXX) $(CXXFLAGS) -c power_console.cxx