mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
12 lines
169 B
Makefile
12 lines
169 B
Makefile
CC= g++
|
|
CFLAGS = -c -Wall
|
|
|
|
all: test_queue
|
|
queue.o: queue.cpp
|
|
$(CC) $(CFLAGS) queue.cpp
|
|
test_queue: queue.o
|
|
$(CC) test_queue.cpp queue.o -o queue
|
|
|
|
clean:
|
|
rm *o queue
|