mirror of
https://github.com/Obfuscator-Collections/VMProtect.git
synced 2026-08-31 11:44:43 +03:00
FILE / ScuroNeko/VMProtect
third-party/libudis86/Makefile.lnx
Исходный файл и его история в репозитории.
15 lines
292 B
Makefile
15 lines
292 B
Makefile
#!/usr/bin/make -f
|
|
# for quick linux building as static library
|
|
SRCS = decode.c input.c itab.c mnem.c syn.c syn-intel.c udis86.c
|
|
OBJS = $(patsubst %.c,%.o,$(SRCS))
|
|
|
|
libudis86.a: $(OBJS)
|
|
ar cr $@ $^
|
|
ranlib $@
|
|
|
|
%.o: %.c
|
|
$(CC) -I. -Wall -fpic -c -o $@ $<
|
|
|
|
clean:
|
|
rm -f libudis86.a $(OBJS)
|