debug of the useless makefile
This commit is contained in:
		
							parent
							
								
									0846b3e433
								
							
						
					
					
						commit
						efa4604e3a
					
				
							
								
								
									
										10
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								Makefile
									
									
									
									
									
								
							| @ -3,17 +3,17 @@ | ||||
| #
 | ||||
| 
 | ||||
| CC	= gcc | ||||
| 
 | ||||
| CCOPT	= -Wall -g  | ||||
| CLIB	= core/libdd2m-core.a | ||||
| 
 | ||||
| all:	essai fake-values | ||||
| 
 | ||||
| # ---------------------------------------------
 | ||||
| 
 | ||||
| essai:	essai.c  Makefile | ||||
| 	gcc ${CCOPT} $< core/utils.o -o $@ | ||||
| essai:	essai.c  Makefile $(CLIB) | ||||
| 	$(CC) ${CCOPT} $< $(CLIB) -o $@ | ||||
| 
 | ||||
| fake-values:	fake-values.c  Makefile | ||||
| 	gcc ${CCOPT} $< core/utils.o  -o $@ | ||||
| fake-values:	fake-values.c  Makefile $(CLIB) | ||||
| 	$(CC) ${CCOPT} $< $(CLIB)  -o $@ | ||||
| 
 | ||||
| # ---------------------------------------------
 | ||||
|  | ||||
| @ -32,7 +32,7 @@ if (verbosity > 1) { | ||||
| 	fprintf(stderr, "fake values - %s %s\n", __DATE__, __TIME__); | ||||
| 	} | ||||
| 
 | ||||
| printf("%.3f %d\n", dtime(), random1000(type)); | ||||
| printf("%.3f %4d\n", dtime(), random1000(type)); | ||||
| 
 | ||||
| return 0; | ||||
| } | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 phyto
						phyto