X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=Makefile;h=88972b6e8286119e0de1234bcccb04cabdee1ab4;hb=0d464c772e9a22e02818c309b79f8cc724ebb891;hp=79a8f2deed2703ba7cb34c05b159b7373117ad20;hpb=7139f3c8070e9aa14fd36c2451d7f10079caa37a;p=pcsx_rearmed.git diff --git a/Makefile b/Makefile index 79a8f2de..88972b6e 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,9 @@ endif ifndef DEBUG CFLAGS += -O2 endif +ifdef DRC_DBG +CFLAGS += -DDRC_DBG +endif TARGET = pcsx all: $(TARGET) @@ -53,6 +56,9 @@ OBJS += frontend/linux/fbdev.o $(TARGET): $(OBJS) $(CC) -o $@ $^ $(LDFLAGS) -Wl,-Map=$@.map +spunull.so: plugins/spunull/spunull.c + $(CC) $(CFLAGS) -shared -fPIC -o $@ $^ + clean: $(RM) $(TARGET) $(OBJS)