Finished FLV2DTSC code, fixed a lot of bugs in new code, added DTSC info tool.
This commit is contained in:
		
							parent
							
								
									e23fbfd109
								
							
						
					
					
						commit
						1b7ab627b5
					
				
					 7 changed files with 432 additions and 58 deletions
				
			
		
							
								
								
									
										23
									
								
								DTSC_Analyser/Makefile
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								DTSC_Analyser/Makefile
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,23 @@ | |||
| SRC = main.cpp ../util/dtsc.cpp | ||||
| OBJ = $(SRC:.cpp=.o) | ||||
| OUT = DTSC_Info | ||||
| INCLUDES =  | ||||
| DEBUG = 4 | ||||
| OPTIMIZE = -g | ||||
| CCFLAGS = -Wall -Wextra -funsigned-char $(OPTIMIZE) -DDEBUG=$(DEBUG) | ||||
| CC = $(CROSS)g++ | ||||
| LD = $(CROSS)ld | ||||
| AR = $(CROSS)ar | ||||
| LIBS =  | ||||
| .SUFFIXES: .cpp  | ||||
| .PHONY: clean default | ||||
| default: $(OUT) | ||||
| .cpp.o: | ||||
| 	$(CC) $(INCLUDES) $(CCFLAGS) $(LIBS) -c $< -o $@ | ||||
| $(OUT): $(OBJ) | ||||
| 	$(CC) $(LIBS) -o $(OUT) $(OBJ) | ||||
| clean: | ||||
| 	rm -rf $(OBJ) $(OUT) Makefile.bak *~ | ||||
| install: $(OUT) | ||||
| 	cp -f ./$(OUT) /usr/bin/ | ||||
| 
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Thulinma
						Thulinma