123456789101112131415161718192021222324252627282930313233343536373839 |
- #
- # Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
- # All rights reserved.
- # This component and the accompanying materials are made available
- # under the terms of the License "Eclipse Public License v1.0"
- # which accompanies this distribution, and is available
- # at the URL "http://www.eclipse.org/legal/epl-v10.html".
- #
- # Initial Contributors:
- # Nokia Corporation - initial contribution.
- #
- # Contributors:
- #
- # Description:
- #
- # caseless-fuse makefile
- #
- # run "make" or "make CFLAGS=-g -DDEBUG' to get debugging output
- # (mount with "-o debug" to see the output)
- CFLAGS=-g -O3 -Wall
- CC=gcc
- caseless-fuse: caseless-fuse.o hashtable.o filehandles.o pathcache.o
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ -ldl -lfuse
- test-hash: test_hash.o hashtable.o
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
- clean::
- -rm test-hash test_hash.o hashtable.o
- %.o: %.c
- $(CC) -c -o $@ -D_FILE_OFFSET_BITS=64 $(CFLAGS) $(LDFLAGS) $^
- clean::
- -rm caseless-fuse caseless-fuse.o filehandles.o pathcache.o
|