16 lines
180 B
Makefile
16 lines
180 B
Makefile
but: ex3
|
|
OBJS = queu.o\
|
|
text.o
|
|
CC = gcc
|
|
CFLAGS = -Wall -ansi -pedantic
|
|
|
|
queu.o: queue.h
|
|
|
|
text.o: queue.h
|
|
|
|
ex3: $(OBJS)
|
|
$(CC) $(CFLAGS) -o ex3 $(OBJS)
|
|
|
|
clean:
|
|
rm -f $(OBJS) ex3
|