diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2006-11-26 15:38:03 +0000 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2006-11-26 15:38:03 +0000 |
commit | 2f4ae3a5d3404daff96fa70022f9e45d623fa720 (patch) | |
tree | 3c779c28ba90a1658997b9c7ccb33c47f010dfe5 /hardinfo2/Makefile.in | |
parent | e39038e95cbcc52fe95039e8229e0dd98d86ade9 (diff) |
Cleanups.
Add ability to choose which modules will be loaded.
Diffstat (limited to 'hardinfo2/Makefile.in')
-rw-r--r-- | hardinfo2/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hardinfo2/Makefile.in b/hardinfo2/Makefile.in index 8a37f674..f8fef304 100644 --- a/hardinfo2/Makefile.in +++ b/hardinfo2/Makefile.in @@ -27,13 +27,13 @@ benchmark.so: benchmark.c @echo "[01;34m--- Module: $< ($@)[00m" $(CCSLOW) $(CFLAGS) -o $@ -shared $< $(GTK_FLAGS) $(GTK_LIBS) \ $(GLADE_LIBS) $(GLADE_FLAGS) - mv -f $@ modules + ln -sf ../$@ modules %.so: %.c @echo "[01;34m--- Module: $< ($@)[00m" $(CC) $(CFLAGS) -o $@ -shared $< $(GTK_FLAGS) $(GTK_LIBS) \ $(GLADE_LIBS) $(GLADE_FLAGS) - mv -f $@ modules + ln -sf ../$@ modules clean: rm -rf .xvpics pixmaps/.xvpics *.o *.so hardinfo modules/*.so report @@ -68,10 +68,10 @@ install: all cp hardinfo ${DESTDIR}/usr/bin/hardinfo @echo '[01;34m*** Installing modules...[00m' - cp -r modules/*.so ${DESTDIR}/usr/lib/hardinfo/modules + cp -Lr modules/*.so ${DESTDIR}/usr/lib/hardinfo/modules @echo '[01;34m*** Installing pixmaps...[00m' - cp -r pixmaps/* ${DESTDIR}/usr/share/hardinfo/pixmaps + cp -Lr pixmaps/* ${DESTDIR}/usr/share/hardinfo/pixmaps @echo '[01;34m*** Installing misc data...[00m' cp uidefs.xml ${DESTDIR}/usr/share/hardinfo |