ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SIDPlayer/Makefile.am
Revision: 1.2
Committed: 2000-09-19T16:07:26Z (23 years, 6 months ago) by cebix
Branch: MAIN
Changes since 1.1: +11 -0 lines
Log Message:
corrected "dist" targets

File Contents

# User Rev Content
1 cebix 1.1 ## Process this file with automake to produce Makefile.in
2    
3     SUBDIRS = src
4    
5     # Requires automake 1.4
6     AUTOMAKE_OPTIONS = 1.4 foreign
7    
8     EXTRA_DIST = Makefile.BeOS
9 cebix 1.2
10     # Add PSID demo files and Frodo sources to distribution
11     dist-hook:
12     cp -R $(srcdir)/"PSID Demo" $(distdir)
13     rm -rf $(distdir)/"PSID Demo"/CVS
14     for i in cpu_macros.h cpu_opcodes.h prefs.h sid.cpp; do \
15     if [ -L $(distdir)/src/$$i ]; then \
16     rm -f $(distdir)/src/$$i; \
17     cp -p $(srcdir)/../Frodo/src/$$i $(distdir)/src; \
18     fi; \
19     done