mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-10-03 16:51:27 +00:00
Merge pull request #216 from diamant3/fix-dmac
fix dmac automake assignments
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
|
||||
libdir := @PSPSDK_LIBDIR@
|
||||
libdir = @PSPSDK_LIBDIR@
|
||||
|
||||
CC = @PSP_CC@
|
||||
CCAS = $(CC)
|
||||
@@ -10,14 +10,14 @@ CPPFLAGS = -I$(top_srcdir)/src/base -I$(top_srcdir)/src/kernel
|
||||
CFLAGS = @PSPSDK_CFLAGS@
|
||||
CCASFLAGS = $(CFLAGS)
|
||||
|
||||
DMAC_OBJS := sceDmac_0000.o sceDmac_0001.o sceDmac_0002.o
|
||||
DMAC_OBJS = sceDmac_0000.o sceDmac_0001.o sceDmac_0002.o
|
||||
|
||||
libpspdmacincludedir := @PSPSDK_INCLUDEDIR@
|
||||
libpspdmacinclude_HEADERS := pspdmac.h
|
||||
libpspdmacincludedir = @PSPSDK_INCLUDEDIR@
|
||||
libpspdmacinclude_HEADERS = pspdmac.h
|
||||
|
||||
lib_LIBRARIES := libpspdmac.a
|
||||
libpspdmac_a_SOURCES := sceDmac.S
|
||||
libpspdmac_a_LIBADD := $(DMAC_OBJS)
|
||||
lib_LIBRARIES = libpspdmac.a
|
||||
libpspdmac_a_SOURCES = sceDmac.S
|
||||
libpspdmac_a_LIBADD = $(DMAC_OBJS)
|
||||
|
||||
$(DMAC_OBJS): sceDmac.S
|
||||
$(AM_V_CPPAS)$(CPPASCOMPILE) -DF_$* $< -c -o $@
|
||||
|
Reference in New Issue
Block a user