| 1 |
sysadm |
1.8 |
EXTRA_DIST = bin conf lib
|
| 2 |
sysadm |
1.2 |
SUBDIRS=game
|
| 3 |
sysadm |
1.1 |
|
| 4 |
sysadm |
1.7 |
AM_CFLAGS = -std=c17 -Wall -Werror -Wno-unused-parameter -Wformat -Wconversion -Wdeprecated -finline-functions
|
| 5 |
sysadm |
1.4 |
|
| 6 |
sysadm |
1.8 |
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 |
sysadm |
1.1 |
|
| 11 |
|
|
install-data-local:
|
| 12 |
sysadm |
1.8 |
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/{} \;
|