mirror of
https://github.com/upx/upx
synced 2025-09-28 19:06:07 +08:00
Updated.
committer: mfx <mfx> 980609373 +0000
This commit is contained in:
parent
34070f0b93
commit
99f0f0120b
|
@ -5,21 +5,21 @@
|
||||||
*.lst
|
*.lst
|
||||||
*.map
|
*.map
|
||||||
*.o
|
*.o
|
||||||
|
fold_elf86.h
|
||||||
|
fold_exec86.h
|
||||||
|
fold_sh86.h
|
||||||
l_com.h
|
l_com.h
|
||||||
l_djgpp2.h
|
l_djgpp2.h
|
||||||
l_exe.h
|
l_exe.h
|
||||||
l_le_n2b.h
|
l_lx_elf86.h
|
||||||
l_le_n2d.h
|
l_lx_exec86.h
|
||||||
l_lx_n2b.h
|
l_lx_sh86.h
|
||||||
l_lx_n2d.h
|
|
||||||
l_sh_n2b.h
|
|
||||||
l_sh_n2d.h
|
|
||||||
l_sys.h
|
l_sys.h
|
||||||
l_tmt.h
|
|
||||||
l_t_n2b.h
|
l_t_n2b.h
|
||||||
l_t_n2bs.h
|
l_t_n2bs.h
|
||||||
l_t_n2d.h
|
l_t_n2d.h
|
||||||
l_t_n2ds.h
|
l_t_n2ds.h
|
||||||
|
l_tmt.h
|
||||||
l_vmlinz.h
|
l_vmlinz.h
|
||||||
l_w32pe.h
|
l_w32pe.h
|
||||||
l_wcle.h
|
l_wcle.h
|
||||||
|
|
|
@ -332,6 +332,8 @@ upxd: l_lx_sep.o l_lx_sep86.asm
|
||||||
DEPS1 = header.ash macros.ash ident.ash ident_n.ash ident_s.ash
|
DEPS1 = header.ash macros.ash ident.ash ident_n.ash ident_s.ash
|
||||||
DEPS2 = header.asy macros.asy
|
DEPS2 = header.asy macros.asy
|
||||||
|
|
||||||
|
$(STUBS): $(srcdir)/scripts/bin2h.pl
|
||||||
|
|
||||||
l_com.h: n2b_d16.asy $(DEPS2)
|
l_com.h: n2b_d16.asy $(DEPS2)
|
||||||
l_djgpp2.h: n2b_d32.asy n2d_d32.asy $(DEPS2)
|
l_djgpp2.h: n2b_d32.asy n2d_d32.asy $(DEPS2)
|
||||||
l_exe.h: n2b_d8e.asy n2d_d8e.asy $(DEPS2)
|
l_exe.h: n2b_d8e.asy n2d_d8e.asy $(DEPS2)
|
||||||
|
@ -347,9 +349,9 @@ l_vxd.h: n2b_d32.asy n2d_d32.asy $(DEPS2)
|
||||||
l_wcle.h: n2b_d32.asy n2d_d32.asy $(DEPS2)
|
l_wcle.h: n2b_d32.asy n2d_d32.asy $(DEPS2)
|
||||||
l_w32pe.h: n2b_d32.asy n2d_d32.asy $(DEPS2)
|
l_w32pe.h: n2b_d32.asy n2d_d32.asy $(DEPS2)
|
||||||
|
|
||||||
l_lx_elf86.asx: l_lx_elf86.asm macros.ash macros.asy
|
l_lx_elf86.h: l_lx_elf86.asm macros.ash macros.asy
|
||||||
l_lx_exec86.asx: l_lx_exec86.asm macros.ash macros.asy
|
l_lx_exec86.h: l_lx_exec86.asm macros.ash macros.asy
|
||||||
l_lx_sh86.asx: l_lx_sh86.asm macros.ash macros.asy
|
l_lx_sh86.h: l_lx_sh86.asm macros.ash macros.asy
|
||||||
|
|
||||||
upxb: linux.hh
|
upxb: linux.hh
|
||||||
upxd: linux.hh
|
upxd: linux.hh
|
||||||
|
|
|
@ -1,10 +1,23 @@
|
||||||
# Makefile for sstrip
|
# Makefile for sstrip
|
||||||
|
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
all: sstrip
|
||||||
|
|
||||||
sstrip: sstrip.c
|
sstrip: sstrip.c
|
||||||
gcc -O2 -g -Wall -W -o $@ $<
|
gcc -O2 -g -Wall -W -o $@ $<
|
||||||
|
|
||||||
mostlyclean clean distclean maintainer-clean:
|
mostlyclean:
|
||||||
|
-rm -f *.d *.err *.i *.log *.map *~ gdb-trans*
|
||||||
|
|
||||||
|
clean distclean maintainer-clean: mostlyclean
|
||||||
|
-rm -f *.a *.lib *.o *.obj tags TAGS ID
|
||||||
|
-rm -rf .deps
|
||||||
rm -f sstrip
|
rm -f sstrip
|
||||||
|
|
||||||
.PHONY: all mostlyclean clean distclean maintainer-clean
|
.PHONY: all mostlyclean clean distclean maintainer-clean
|
||||||
|
|
||||||
|
.NOEXPORT:
|
||||||
|
|
||||||
|
# vi:nowrap
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user