mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-04 02:56:40 +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
|