mirror of
				https://gitlab.com/klmp200/LO27.git
				synced 2025-10-31 01:03:06 +00:00 
			
		
		
		
	Deleted files + fixed makefile
This commit is contained in:
		
							
								
								
									
										27
									
								
								LibCell/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								LibCell/Makefile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,27 @@ | ||||
| CC=gcc | ||||
| CFLAGS=-Wall -Werror -pedantic -fpic -g | ||||
|  | ||||
|  | ||||
| LIBSDIR=-L/usr/lib -L../Libs | ||||
| INCLUDEDIR=-I/usr/include -I. | ||||
|  | ||||
| #Library variables | ||||
| LIBTARGET=libCellElement.so | ||||
| LIBSOURCE=CellElement | ||||
| LIBSOURCECFILE=$(LIBSOURCE:=.c) | ||||
| LIBSOURCEOFILE=$(LIBSOURCE:=.o) | ||||
|  | ||||
| #Generating the library binary | ||||
| $(LIBTARGET): $(LIBSOURCEOFILE) | ||||
| 	@echo "\n Generating the library binary" | ||||
| 	$(CC) $(CFLAGS) -shared $(LIBSOURCEOFILE) -o ../Libs/$(LIBTARGET) | ||||
|  | ||||
| #Generating object files | ||||
| .c.o: | ||||
| 	@echo "\n Generating " $@ " from " $< | ||||
| 	$(CC) $(CFLAGS) $(INCLUDEDIR) -c -o $@ $< | ||||
|  | ||||
| #Cleaning | ||||
| clean: | ||||
| 	@echo "\n Cleaning" | ||||
| 	rm -rf *.o *.exe *.so | ||||
		Reference in New Issue
	
	Block a user