~ubuntu-branches/debian/sid/twpsk/sid

« back to all changes in this revision

Viewing changes to user-twpsk/savedir/makefile

  • Committer: Bazaar Package Importer
  • Author(s): Joop Stakenborg
  • Date: 2001-12-12 08:24:32 UTC
  • Revision ID: james.westby@ubuntu.com-20011212082432-tamea6jb427pt8lv
Tags: upstream-2.0
ImportĀ upstreamĀ versionĀ 2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# MAKEFILE FOR TWPSK
 
3
#
 
4
 
 
5
CC         =     g++ -lm 
 
6
CXXFLAGS   +=    -I/usr/X11R6/include
 
7
 
 
8
CFILES     =     twpsk.C twpskWids.C twpskCB.C twpskDiags.C\
 
9
                 twpskScope.C twpskDisp.C catWids.C decoderWids.C callbox.C
 
10
 
 
11
OFILES     =     $(CFILES:.C=.o)
 
12
 
 
13
HFILES     =     GUI.h ../server/server.h twpskScope.h twpskDisp.h\
 
14
                 twpskWids.h callbox.h sa.xbm wf.xbm wfCursorShape.xbm\
 
15
                 wfCursorMask.xbm decoderWids.h twpskCB.h 
 
16
 
 
17
MISC       =     Twpsk makefile README twpskHelp *.lsm CHANGES INSTALL
 
18
 
 
19
SAVEFILES  =     $(CFILES) $(HFILES) $(MISC) twpskDir
 
20
 
 
21
##############################################################################
 
22
 
 
23
all:            $(OFILES)
 
24
 
 
25
$(OFILES):      $(HFILES)
 
26
 
 
27
clean:
 
28
                rm -f core $(OFILES)
 
29
 
 
30
spotless:       clean
 
31
                rm -f twpsk 
 
32
 
 
33
backup:         $(SAVEFILES)
 
34
                cp -r $(SAVEFILES) savedir
 
35