first commit
This commit is contained in:
16
sort_closet/code_template-DP/Makefile
Executable file
16
sort_closet/code_template-DP/Makefile
Executable file
@ -0,0 +1,16 @@
|
||||
CC=g++
|
||||
|
||||
all: data_gen main analyser
|
||||
|
||||
data_gen:
|
||||
$(CC) data_gen.cpp -o data_gen
|
||||
|
||||
main:
|
||||
$(CC) main.cpp algorithm.cpp test.cpp -o main
|
||||
|
||||
analyser:
|
||||
$(CC) analyser.cpp algorithm.cpp test.cpp -o analyser
|
||||
|
||||
.PHONY(clean):
|
||||
clean:
|
||||
rm -rf *.o *.data data_gen main analyser
|
||||
Reference in New Issue
Block a user