Mon, 08 Apr 2013 16:57:03 +0200
win32: silence win32 build by displaying neat CC/CCLD/PERL tags instead of compilation command contents
| 14377 | 1 | # Rules on how to make object files from various sources |
| 2 | ||
| 3 | %.o: %.c | |
| 4 | $(CC) $(CFLAGS) $(DEFINES) $(INCLUDE_PATHS) -o $@ -c $< | |
| 5 | ||
| 6 | %.c: %.xs | |
|
33867
68be92b95def
win32: silence win32 build by displaying neat CC/CCLD/PERL tags instead of compilation command contents
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
30285
diff
changeset
|
7 | $(TAG) "PERL" $(PERL) -MExtUtils::ParseXS -e 'ExtUtils::ParseXS::process_file(filename => "$<", output => "$@", typemap => "$(PURPLE_PERL_TOP)/common/typemap");' |
| 14377 | 8 | |
| 9 | %.o: %.rc | |
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15435
diff
changeset
|
10 | $(WINDRES) -I$(PURPLE_TOP) -i $< -o $@ |
|
30285
33c8197dc6b6
Final piece of getting the installer translations integrated with the regular
Daniel Atallah <datallah@pidgin.im>
parents:
29868
diff
changeset
|
11 | |
|
33c8197dc6b6
Final piece of getting the installer translations integrated with the regular
Daniel Atallah <datallah@pidgin.im>
parents:
29868
diff
changeset
|
12 | %.desktop: %.desktop.in $(wildcard $(PIDGIN_TREE_TOP)/po/*.po) |
|
33c8197dc6b6
Final piece of getting the installer translations integrated with the regular
Daniel Atallah <datallah@pidgin.im>
parents:
29868
diff
changeset
|
13 | LC_ALL=C $(PERL) $(INTLTOOL_MERGE) -d -u -c $(PIDGIN_TREE_TOP)/po/.intltool-merge-cache $(PIDGIN_TREE_TOP)/po $< $@ |