-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
55 lines (49 loc) · 1.45 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Spacecraft Simulation Framework
# Makefile
#
# $Author: nilspace $
# $Revision: 1.8 $
# $Date: 2003/05/21 03:45:58 $
# Which compiler to use
CC = gcc
CFLAGS = -g -Wall $(INCLUDE) -Wno-deprecated
all: qmake src/Makefile doc
$(MAKE) -C src/ all
doc: FORCE
$(MAKE) -C doc/ all
qmake:
$(MAKE) -C src/ qmake
clean:
$(MAKE) -C src/ clean
$(MAKE) -C doc/ clean
archive: clean
tar zcvf OpenSessame`date +%y%m%d`.tgz doc src Makefile INSTALL LICENSE VERSION
FORCE:
# /*****************************************************************************
# * $Log: Makefile,v $
# * Revision 1.8 2003/05/21 03:45:58 nilspace
# * Update to work.
# *
# * Revision 1.7 2003/05/20 19:12:54 nilspace
# * Updated to call qmake.
# *
# * Revision 1.6 2003/05/15 20:48:51 simpliciter
# * removed explicit gcc-3.1 call
# *
# * Revision 1.5 2003/05/15 19:49:20 simpliciter
# * Passing CFLAGS to sub-Makefiles.
# *
# * Revision 1.4 2003/05/15 19:47:07 simpliciter
# * Added -Wno-deprecated to CFLAGS line to suppress error messages.
# *
# * Revision 1.3 2003/05/15 19:38:21 simpliciter
# * Sub-Makefiles will be called with the CC identified at the top of this file.
# *
# * Revision 1.2 2003/05/15 18:41:39 nilspace
# * Updated the clean: target.
# *
# * Revision 1.1 2003/05/01 15:02:12 nilspace
# * New makefile for building the Open-SESSAME libraries and documentation.
# *
# *
# ******************************************************************************/