/[LeafOK_CVS]/lbbs/utils/Makefile.am
ViewVC logotype

Diff of /lbbs/utils/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.4 by sysadm, Mon May 5 14:27:57 2025 UTC Revision 1.8 by sysadm, Sat Jul 5 00:45:26 2025 UTC
# Line 1  Line 1 
1  EXTRA_DIST = makedist.sh  EXTRA_DIST = bin conf lib
2  SUBDIRS=game  SUBDIRS=game
3    
4  AM_CFLAGS = -Wall -Werror -Wno-unused-parameter -Wformat -Wconversion -Wdeprecated -finline-functions  AM_CFLAGS = -std=c17 -Wall -Werror -Wno-unused-parameter -Wformat -Wconversion -Wdeprecated -finline-functions
5    
6  CLEANFILES=@EXTRA_CLEAN@  install-exec-local:
7            install -d $(prefix)/$(subdir)/bin $(prefix)/$(subdir)/lib
8            cd $(srcdir)/bin; find . -maxdepth 1 -type f -exec install -t $(prefix)/$(subdir)/bin {} \;
9            cd $(srcdir)/lib; find . -maxdepth 1 -type f -exec install -t $(prefix)/$(subdir)/lib {} \;
10    
11  install-data-local:  install-data-local:
12          sh makedist.sh $(prefix)/$(subdir)          install -d $(prefix)/$(subdir)/conf
13            cd $(srcdir)/conf; find . -maxdepth 1 -type f -exec install -t $(prefix)/$(subdir)/conf {} \;
14    
15    uninstall-local:
16            cd $(srcdir)/bin; find . -type f -exec rm -f $(prefix)/$(subdir)/bin/{} \;
17            cd $(srcdir)/conf; find . -type f -exec rm -f $(prefix)/$(subdir)/conf/{} \;
18            cd $(srcdir)/lib; find . -type f -exec rm -f $(prefix)/$(subdir)/lib/{} \;


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1