diff options
author | B Stack <bgstack15@gmail.com> | 2020-08-16 16:18:55 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2020-08-16 16:18:55 -0400 |
commit | 8273aba6c02ec57615c8f075086c2e994f720a95 (patch) | |
tree | 8e35db9be497e1ce5e33c2703ce137cbeb359707 /newmoon/debian/make.mk | |
parent | Merge branch 'connman-xdg-bump' into 'master' (diff) | |
download | stackrpms-8273aba6c02ec57615c8f075086c2e994f720a95.tar.gz stackrpms-8273aba6c02ec57615c8f075086c2e994f720a95.tar.bz2 stackrpms-8273aba6c02ec57615c8f075086c2e994f720a95.zip |
WIP: newmoon compile attempt 1
The dpkg built on d2-03a but had some palemoon naming artifacts,
so this commit is for building it with the attempted fixes for
that.
Diffstat (limited to 'newmoon/debian/make.mk')
-rw-r--r-- | newmoon/debian/make.mk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/newmoon/debian/make.mk b/newmoon/debian/make.mk new file mode 100644 index 0000000..d53af62 --- /dev/null +++ b/newmoon/debian/make.mk @@ -0,0 +1,14 @@ +lazy = $(eval $(1) = $$(if $$(___$(1)),,$$(eval ___$(1) := $(2)))$$(___$(1))) +letters = a b c d e f g h i j k l m n o p q r s t u v w x y z +lc = $(subst A,a,$(subst B,b,$(subst C,c,$(subst D,d,$(subst E,e,$(subst F,f,$(subst G,g,$(subst H,h,$(subst I,i,$(subst J,j,$(subst K,k,$(subst L,l,$(subst M,m,$(subst N,n,$(subst O,o,$(subst P,p,$(subst Q,q,$(subst R,r,$(subst S,s,$(subst T,t,$(subst U,u,$(subst V,v,$(subst W,w,$(subst X,x,$(subst Y,y,$(subst Z,z,$1)))))))))))))))))))))))))) +uc = $(subst a,A,$(subst b,B,$(subst c,C,$(subst d,D,$(subst e,E,$(subst f,F,$(subst g,G,$(subst h,H,$(subst i,I,$(subst j,J,$(subst k,K,$(subst l,L,$(subst m,M,$(subst n,N,$(subst o,O,$(subst p,P,$(subst q,Q,$(subst r,R,$(subst s,S,$(subst t,T,$(subst u,U,$(subst v,V,$(subst w,W,$(subst x,X,$(subst y,Y,$(subst z,Z,$1)))))))))))))))))))))))))) + +__VARS := $(.VARIABLES) + +dump: + @$(foreach var,$(sort $(filter-out $(__VARS) __VARS preprocess system_lib ___%,$(.VARIABLES))),echo '$(var) = $(subst ','\'',$(subst \,\\,$($(var))))';) + +dump-%: + @echo $($*) + +.PHONY: dump |