Skip to content

Commit

Permalink
add picture to install dir
Browse files Browse the repository at this point in the history
add EXTRA_DIST variable after the PNG and ICON declaration.
specify the destination folder.
  • Loading branch information
Patarimi committed Mar 1, 2021
1 parent 920e846 commit 6212ba6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
8 changes: 7 additions & 1 deletion src/bitmaps/MakeList
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,10 @@ ICONS = \
big.button.qucs.xpm \
big.qucs.xpm \
tiny.button.qucs.xpm \
tiny.qucs.xpm
tiny.qucs.xpm

EXTRA_DIST = $(XPMS) $(PNGS) $(ICONS)

# installation of pictures
picdatadir = ${prefix}/share/qucs/bitmaps
picdata_DATA = $(EXTRA_DIST)
14 changes: 12 additions & 2 deletions src/bitmaps/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
EXTRA_DIST = $(PNG) $(XPM)

PNG = \
ac_current.png \
ac.png \
Expand Down Expand Up @@ -247,3 +245,15 @@ XPM = \
smallsave.xpm \
tiny.button.qucs.xpm \
tiny.qucs.xpm

ICON = \
big.button.qucs.xpm \
big.qucs.xpm \
tiny.button.qucs.xpm \
tiny.qucs.xpm

EXTRA_DIST = $(XPM) $(PNG) $(ICON)

# installation of pictures
picdatadir = ${prefix}/share/qucs/bitmaps
picdata_DATA = $(EXTRA_DIST)

0 comments on commit 6212ba6

Please sign in to comment.