14 lines
		
	
	
		
			263 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			263 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0-only
 | |
| CFLAGS += -D__EXPORTED_HEADERS__ -I../../../include/uapi -I../../../include
 | |
| 
 | |
| TARGET = dbc_library.so
 | |
| 
 | |
| all: $(TARGET)
 | |
| 
 | |
| dbc_library.so: dbc.c
 | |
| 	$(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $<
 | |
| 	chmod -x $@
 | |
| 
 | |
| clean:
 | |
| 	$(RM) $(TARGET)
 |