Updating the debug branch's Makefile.
This commit is contained in:
		
							parent
							
								
									f7ee503596
								
							
						
					
					
						commit
						6545b996f2
					
				
							
								
								
									
										22
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										22
									
								
								Makefile
									
									
									
									
									
								
							@ -4,15 +4,19 @@ SRC = ${SRC_DIR}/tty-solitaire.c
 | 
				
			|||||||
CFLAGS = -W -Wall -pedantic -ansi -std=c99
 | 
					CFLAGS = -W -Wall -pedantic -ansi -std=c99
 | 
				
			||||||
OUTPUT = bin/tty-solitaire
 | 
					OUTPUT = bin/tty-solitaire
 | 
				
			||||||
LIB_DIR = lib
 | 
					LIB_DIR = lib
 | 
				
			||||||
OBJECTS = ${LIB_DIR}/frame.o    \
 | 
					DEBUG_DIR = debug
 | 
				
			||||||
          ${LIB_DIR}/card.o     \
 | 
					OBJECTS = ${LIB_DIR}/frame.o         \
 | 
				
			||||||
          ${LIB_DIR}/stack.o    \
 | 
					          ${LIB_DIR}/card.o          \
 | 
				
			||||||
          ${LIB_DIR}/deck.o     \
 | 
					          ${LIB_DIR}/stack.o         \
 | 
				
			||||||
          ${LIB_DIR}/util.o     \
 | 
					          ${LIB_DIR}/deck.o          \
 | 
				
			||||||
          ${LIB_DIR}/cursor.o   \
 | 
					          ${LIB_DIR}/util.o          \
 | 
				
			||||||
          ${LIB_DIR}/keyboard.o \
 | 
					          ${LIB_DIR}/cursor.o        \
 | 
				
			||||||
          ${LIB_DIR}/display.o  \
 | 
					          ${LIB_DIR}/keyboard.o      \
 | 
				
			||||||
          ${LIB_DIR}/game.o
 | 
					          ${LIB_DIR}/display.o       \
 | 
				
			||||||
 | 
					          ${LIB_DIR}/game.o          \
 | 
				
			||||||
 | 
					          ${DEBUG_DIR}/card_debug.o  \
 | 
				
			||||||
 | 
					          ${DEBUG_DIR}/stack_debug.o \
 | 
				
			||||||
 | 
					          ${DEBUG_DIR}/deck_debug.o
 | 
				
			||||||
LDFLAGS = -lncursesw
 | 
					LDFLAGS = -lncursesw
 | 
				
			||||||
 | 
					
 | 
				
			||||||
tty-solitaire: ${OBJECTS}
 | 
					tty-solitaire: ${OBJECTS}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user