WiiFlow_Lite/portlibs/sources/libcustomntfs/Makefile
fix94.1 70e3df6d5d -back to a cache of 8, libntfs 2011.4.12 and the old
ntfs mount settings (new libntfs makes problems)
2012-04-29 09:03:06 +00:00

34 lines
719 B
Makefile

# Quick'n'dirty makefile [BC] v2
ifeq ($(strip $(DEVKITPPC)),)
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
endif
include $(DEVKITPPC)/wii_rules
LIBOGC_INC := $(DEVKITPRO)/libogc/include
LIBOGC_LIB := $(DEVKITPRO)/libogc/lib/wii
CFLAGS := -O3 $(MACHDEP) -I$(LIBOGC_INC) -DHAVE_CONFIG_H
SOURCES := source
LIB := ntfs
CFILES := $(wildcard $(SOURCES)/*.c)
OFILES := $(CFILES:.c=.o)
ARC := lib$(LIB).a
HDR := ntfs.h
all : $(OFILES)
$(AR) -r $(ARC) $(OFILES)
clean :
rm -f $(OFILES) $(ARC)
install :
cp -f $(ARC) ../../lib
cp -f $(HDR) ../../include
cp -f ntfsfile_frag.h ../../include
%.o : %.c
$(CC) $(CFLAGS) -c $< -o $@