diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2019-08-14 14:50:25 +0300 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-08-14 14:28:45 +0200 |
commit | f6fe56d0110ff17da3a25bac0199dcb0980244f6 (patch) | |
tree | db8b3e5b7445e05cd50f95cf74d17aa331bb145e /Applications/Makefile.common | |
parent | cbdda9106559a8fc173d4b7ce29254638f9b4e69 (diff) | |
download | serenity-f6fe56d0110ff17da3a25bac0199dcb0980244f6.zip |
SystemMonitor: Add a PCI devices tab
This is essentially a graphical version of the lspci command.
Diffstat (limited to 'Applications/Makefile.common')
-rwxr-xr-x | Applications/Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Makefile.common b/Applications/Makefile.common index 90302abafc..af49961f1a 100755 --- a/Applications/Makefile.common +++ b/Applications/Makefile.common @@ -3,7 +3,7 @@ DEFINES += -DUSERLAND all: $(APP) $(APP): $(OBJS) - $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lgui -ldraw -laudio -lipc -lvt -lcore -lc + $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lgui -ldraw -laudio -lipc -lvt -lpcidb -lcore -lc .cpp.o: @echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $< |