File: Makefile.mingw

package info (click to toggle)
guifications 2.16-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,412 kB
  • sloc: ansic: 9,991; sh: 8,958; xml: 1,602; makefile: 184
file content (16 lines) | stat: -rw-r--r-- 336 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# Makefile.mingw
#
# Description: Makefile for guifications themes
#

DEFAULT_THEME = ./default
MINI_THEME = ./mini
PENGUINS_THEME = ./Penguins

.PHONY: install

install:
	$(MAKE) -C $(DEFAULT_THEME) -f Makefile.mingw install
	$(MAKE) -C $(MINI_THEME) -f Makefile.mingw install
	$(MAKE) -C $(PENGUINS_THEME) -f Makefile.mingw install