-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
34 lines (29 loc) · 918 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#*******************************************************************************
#
# Electronics and Telecommunications Research Institute
#
# Copyright(c) 2021 Electronics and Telecommunications Research Institute,
# 218 Gajeong-ro, Yuseong-gu, Daejeon, 34129, Korea.
# All rights are reserved. No part of this work covered by the copyright
# hereon may be reproduced, stored in retrieval systems, in any form or by
# any means, electronic, mechanical, photocopying, recording or otherwise,
# without the prior permission of ETRI.
#
# FILE NAME : Makefile
#
# AUTHOR :
# DESCRIPTION : Makefile for QPlayer
#
#*******************************************************************************
all: CORE QASM
CORE:
@ $(MAKE) -C core
QASM:
@ $(MAKE) -C qasm/cli
TEST:
@ $(MAKE) -C test
clean:
@ $(MAKE) -C core clean
@ $(MAKE) -C qasm/cli clean
@ $(MAKE) -C test clean
@ $(RM) -rf release