mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 19:18:06 +00:00
commit
d59081b073
3 changed files with 0 additions and 18 deletions
8
Makefile
8
Makefile
|
@ -213,11 +213,7 @@ else
|
|||
endif
|
||||
endif
|
||||
|
||||
ifndef BUILDDIR
|
||||
@cd samples && $(MAKE)
|
||||
else
|
||||
@cd samples && $(MAKE) BUILDDIR=$(BLDIR)
|
||||
endif
|
||||
endif
|
||||
|
||||
config:
|
||||
|
@ -337,10 +333,6 @@ ifeq (,$(findstring yes,$(UNICORN_BUILD_CORE_ONLY)))
|
|||
endif
|
||||
$(MAKE) -C tests/unit clean
|
||||
|
||||
ifdef BUILDDIR
|
||||
rm -rf $(BUILDDIR)
|
||||
endif
|
||||
|
||||
|
||||
define generate-pkgcfg
|
||||
echo 'Name: unicorn' > $(PKGCFGF)
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
# Python binding for Unicorn engine. Nguyen Anh Quynh <aquynh@gmail.com>
|
||||
|
||||
ifndef BUILDDIR
|
||||
OBJDIR = ./build
|
||||
else
|
||||
OBJDIR = $(abspath $(BUILDDIR))/obj/bindings/python
|
||||
endif
|
||||
|
||||
.PHONY: gen_const install install3 clean
|
||||
|
||||
|
|
|
@ -16,15 +16,9 @@ UNICORN_DEP_LIBS_STATIC += -lpthread -lm $(GLIB)
|
|||
V ?= 0
|
||||
|
||||
INCDIR = ../include
|
||||
ifndef BUILDDIR
|
||||
SAMPLEDIR = .
|
||||
OBJDIR = .
|
||||
LIBDIR = ..
|
||||
else
|
||||
SAMPLEDIR = $(BUILDDIR)/samples
|
||||
OBJDIR = $(BUILDDIR)/obj/samples
|
||||
LIBDIR = $(BUILDDIR)
|
||||
endif
|
||||
|
||||
CFLAGS += -Wall -I$(INCDIR)
|
||||
LDFLAGS += -lpthread -L$(LIBDIR) -l$(LIBNAME)
|
||||
|
|
Loading…
Reference in a new issue