[go: up one dir, main page]

Menu

[r1]: / Makefile  Maximize  Restore  History

Download this file

13 lines (8 with data), 200 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
CFLAGS = -Wall -Wextra -O3 -std=gnu89 -pedantic
all: libpop3.a
libpop3.a: libpop3.o
ar rcs libpop3.a libpop3.o
libpop3.o: libpop3.c
gcc $(CFLAGS) -c libpop3.c -o libpop3.o
clean:
rm -f *.o *.a