File: Makefile

package info (click to toggle)
aca 0.1.6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 492 kB
  • ctags: 569
  • sloc: ansic: 4,254; sh: 2,237; makefile: 256
file content (32 lines) | stat: -rw-r--r-- 690 bytes parent folder | download | duplicates (2)
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

#
#  Copyright (c) 2001 RISKO Gergely <risko@debian.org>
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#

TOPDIR =..
include $(TOPDIR)/Makeconf

##
## INSTALL
##

install: install-include

install-include: aca.h aca_widget.h aca_dlg.h
	$(INSTALL_DATA) aca.h $(includedir)
	$(INSTALL_DATA) aca_widget.h $(includedir)
	$(INSTALL_DATA) aca_dlg.h $(includedir)

##
## UNINSTALL
##

uninstall:
	rm -f $(includedir)/aca.h
	rm -f $(includedir)/aca_widget.h
	rm -f $(includedir)/aca_dlg.h