comparison pidgin/win32/IdleTracker/Makefile.mingw @ 16039:ded8da3de5f8

This should get all the Win32 Makefiles in line with the names Pidgin and Purple. I tried to separate PIDGIN and PURPLE values as much as a could to make it easier to divide them later if that's ever desired.
author Kevin Stange <kevin@simguy.net>
date Tue, 10 Apr 2007 06:19:29 +0000
parents 0e17470b47c2
children
comparison
equal deleted inserted replaced
16037:8f62c4177e0c 16039:ded8da3de5f8
2 # Makefile.mingw 2 # Makefile.mingw
3 # 3 #
4 # Description: Makefile for idletrack 4 # Description: Makefile for idletrack
5 # 5 #
6 6
7 GAIM_TOP := ../../.. 7 PIDGIN_TREE_TOP := ../../..
8 include $(GAIM_TOP)/libpurple/win32/global.mak 8 include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak
9 9
10 TARGET = idletrack 10 TARGET = idletrack
11 11
12 ## 12 ##
13 ## SOURCES, OBJECTS 13 ## SOURCES, OBJECTS
15 15
16 C_SRC = idletrack.c 16 C_SRC = idletrack.c
17 17
18 OBJECTS = $(C_SRC:%.c=%.o) 18 OBJECTS = $(C_SRC:%.c=%.o)
19 19
20 include $(GAIM_COMMON_RULES) 20 include $(PIDGIN_COMMON_RULES)
21 21
22 ## 22 ##
23 ## TARGET DEFINITIONS 23 ## TARGET DEFINITIONS
24 ## 24 ##
25 25
26 .PHONY: all install clean 26 .PHONY: all install clean
27 27
28 all: $(TARGET).dll 28 all: $(TARGET).dll
29 29
30 install: $(GAIM_INSTALL_DIR) 30 install: $(PIDGIN_INSTALL_DIR)
31 cp $(TARGET).dll $(GAIM_INSTALL_DIR) 31 cp $(TARGET).dll $(PIDGIN_INSTALL_DIR)
32 32
33 ## 33 ##
34 ## BUILD DLL 34 ## BUILD DLL
35 ## 35 ##
36 36
42 ## 42 ##
43 43
44 clean: 44 clean:
45 rm -f $(OBJECTS) $(TARGET).dll $(TARGET).dll.a 45 rm -f $(OBJECTS) $(TARGET).dll $(TARGET).dll.a
46 46
47 include $(GAIM_COMMON_TARGETS) 47 include $(PIDGIN_COMMON_TARGETS)