~ubuntu-branches/ubuntu/wily/aegisub/wily-proposed

« back to all changes in this revision

Viewing changes to .pc/remove-vendor-luajit-dependency.patch/src/libresrc/Makefile

  • Committer: Package Import Robot
  • Author(s): Sebastian Reichel, Pascal De Vuyst, Juan Picca, Sebastian Reichel
  • Date: 2015-08-04 21:40:50 UTC
  • mfrom: (5.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20150804214050-y2aghm9vdksoc8t7
Tags: 3.2.2+dfsg-1
[ Pascal De Vuyst ]
* Fix Typo in package description (Closes: #739219)

[ Juan Picca ]
* Add patch to fix reproducible build (Closes: #789728)

[ Sebastian Reichel ]
* New upstream release
 - remove vendor directory from orig tarball
* Update Debian Standards Version to 3.9.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(dir $(lastword $(MAKEFILE_LIST)))../../header.mk
 
2
 
 
3
LIB += resrc
 
4
 
 
5
resrc_CPPFLAGS := -I$(TOP) -I$(d) $(CPPFLAGS_WX)
 
6
resrc_OBJ := \
 
7
        $(d)bitmap.o \
 
8
        $(d)default_config.o \
 
9
        $(d)libresrc.o
 
10
 
 
11
$(resrc_OBJ): $(d)default_config.h $(d)bitmap.h $(d)default_config.cpp $(d)bitmap.cpp
 
12
 
 
13
RESPACK := cd $(TOP)src/libresrc; $(TOP)vendor/luajit/src/host/minilua $(TOP)tools/respack.lua
 
14
 
 
15
$(d)bitmap.cpp: $(d)bitmap.h
 
16
$(d)default_config.cpp: $(d)default_config.h
 
17
 
 
18
$(d)bitmap.h: $(TOP)tools/respack.lua $(d)../bitmaps/button
 
19
        $(RESPACK) ../bitmaps/manifest.respack bitmap.cpp bitmap.h
 
20
 
 
21
ifeq (yes, $(BUILD_DARWIN))
 
22
$(d)default_config.h: $(TOP)tools/respack.lua $(d)*.json $(d)osx/*.json
 
23
        $(RESPACK) manifest_osx.respack default_config.cpp default_config.h
 
24
else
 
25
$(d)default_config.h: $(TOP)tools/respack.lua $(d)*.json
 
26
        $(RESPACK) manifest.respack default_config.cpp default_config.h
 
27
endif
 
28
 
 
29
CLEANFILES += \
 
30
        $(d)bitmap.cpp \
 
31
        $(d)bitmap.h \
 
32
        $(d)default_config.cpp \
 
33
        $(d)default_config.h
 
34
 
 
35
DISTCLEANFILES += $(d)default_config_platform.json
 
36
 
 
37
include $(TOP)Makefile.target