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
198 B
15 lines
198 B
6 years ago
|
CFLAGS = -g -Wall
|
||
|
#CFLAGS = -O4 -Wall
|
||
|
|
||
|
SRC = png2bdf.c
|
||
|
|
||
|
OBJ = $(SRC:.c=.o)
|
||
|
|
||
|
png2bdf: $(OBJ)
|
||
|
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) -o png2bdf -lpng
|
||
|
|
||
|
clean:
|
||
|
-rm $(OBJ) png2bdf
|
||
|
|
||
|
test:
|
||
|
./png2bdf *.png
|