#
# Makefile for MPSSD
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License.
#

CFLAGS += -DFAKE -I$(KERNELDIR)/tools/include
LDFLAGS += -pthread

mpssd.o: mpssd.c

sysfs.o: sysfs.c

mpssd: mpssd.o sysfs.o

all: mpssd

distclean: clean
clean:
	rm -f *.o
	rm -f mpssd
