blob: 489add7a0863c05e30562bbd8794d5d7b2f6f944 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
--- Makefile.orig Thu Jul 5 16:46:20 2001
+++ Makefile Thu Jul 5 16:49:08 2001
@@ -1,16 +1,17 @@
-INCDIR = `gtk-config --cflags`
-LIBS = `gtk-config --libs gthread`
+CC = gcc
+INCDIR = `${GTK_CONFIG} --cflags`
+LIBS = `${GTK_CONFIG} --libs gthread`
TARGET = SambaSentinel
FILES = SambaSentinel.c gtk_common.cpp
OBJECTS = SambaSentinel.o gtk_common.o
SambaSentinel: $(OBJECTS)
- gcc $(INCDIR) $(LIBS) -o $(TARGET) $(OBJECTS)
+ $(CC) $(INCDIR) $(LIBS) -o $(TARGET) $(OBJECTS)
SambaSentinel.o:SambaSentinel.c
- gcc $(INCDIR) -c -o SambaSentinel.o SambaSentinel.c
+ $(CC) $(INCDIR) -c -o SambaSentinel.o SambaSentinel.c
gtk_common.o: gtk_common.c
- gcc $(INCDIR) -c -o gtk_common.o gtk_common.c
+ $(CC) $(INCDIR) -c -o gtk_common.o gtk_common.c
clean:
rm -f *.o SambaSentinel *~ core
|