You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							| 12345678910111213141516 | BLIB = ../bin/blib.a
CFLAGS = -Os
all : hijack mucurses_test
hijack : hijack.c
	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -lpcap -o $@ $<
mucurses_test.o : mucurses_test.c
	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -o $@ -c $<
mucurses_test : mucurses_test.o $(BLIB)
	$(CC) -o $@ $< -lc $(BLIB)
clean :
	rm -f hijack mucurses_test *.o
 |