9 lines
		
	
	
		
			191 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			191 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
CFLAGS ?= -Iinclude
 | 
						|
 | 
						|
all: build build/test-get-set-cluster
 | 
						|
 | 
						|
build:
 | 
						|
	mkdir build
 | 
						|
 | 
						|
build/test-get-set-cluster:
 | 
						|
	$(CC) $(CFLAGS) tests/get-set-cluster.c src/fat12.c -o build/test-get-set-cluster
 |