blob: 688a6fc988228b091d69cd93ed3cedbc4f8579e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- Makefile.orig Sat Apr 3 13:33:52 1999
+++ Makefile Sat Apr 3 13:33:54 1999
@@ -1,9 +1,9 @@
-CC = gcc
+CC ?= gcc
#CC = egcs
#FLAGS = -g
gmixer: gmixer.c
- $(CC) $(FLAGS) `gtk-config --cflags` `gtk-config --libs` gmixer.c -o gmixer
+ $(CC) $(CFLAGS) `$(GTK_CONFIG) --cflags` `$(GTK_CONFIG) --libs` gmixer.c -o gmixer
install: gmixer
install -s -m 755 -o 0 -g 0 gmixer /usr/X11R6/bin/
install -m 644 -o 0 -g 0 icons/gmixer.xpm /usr/share/pixmaps/
|