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.
 
 
 
 
 

15 lines
227 B

CFLAGS = -I../../csrc -g -Wall
#CFLAGS = -O4 -Wall
SRC = $(shell ls ../../csrc/*.c 2>/dev/null) test.c
OBJ = $(SRC:.c=.o)
stdio: $(OBJ)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) -o stdio
clean:
-rm $(OBJ) stdio
test:
./stdio