frontend: update libpicofe, fix missed callbacks
[pcsx_rearmed.git] / plugins / spunull / Makefile
... / ...
CommitLineData
1include ../../config.mak
2
3TARGET = spunull.so
4WD = $(shell pwd)
5PLUGINDIR = $(shell basename $(WD))
6
7all: ../../config.mak $(TARGET)
8
9CFLAGS += $(PLUGIN_CFLAGS)
10
11$(TARGET): spunull.c
12 $(CC) $(CFLAGS) -shared -ggdb -O2 -o $@ $^
13 ln -fs $(PLUGINDIR)/$(TARGET) ../
14
15clean:
16 $(RM) $(TARGET)
17
18../../config.mak:
19 @echo "Please run ./configure before running make!"
20 @exit 1