-
Notifications
You must be signed in to change notification settings - Fork 13
/
Makefile
38 lines (27 loc) · 1.05 KB
/
Makefile
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
33
34
35
36
37
CFLAGS=-Wall
repeater: repeater.o repeaterproc.o openbsd_stringfuncs.o iniparser.o readini.o repeaterutil.o repeaterevents.o
g++ $(CFLAGS) -o repeater repeater.o repeaterproc.o openbsd_stringfuncs.o iniparser.o readini.o repeaterutil.o repeaterevents.o
repeater.o: repeater.cpp
g++ $(CFLAGS) -c repeater.cpp
repeaterproc.o: repeaterproc.cpp
g++ $(CFLAGS) -c repeaterproc.cpp
openbsd_stringfuncs.o: openbsd_stringfuncs.cpp
g++ $(CFLAGS) -c openbsd_stringfuncs.cpp
iniparser.o: iniparser.cpp
g++ $(CFLAGS) -c iniparser.cpp
readini.o: readini.cpp
g++ $(CFLAGS) -c readini.cpp
repeaterutil.o: repeaterutil.cpp
g++ $(CFLAGS) -c repeaterutil.cpp
repeaterevents.o: repeaterevents.cpp
g++ $(CFLAGS) -c repeaterevents.cpp
clean:
rm -f *.o repeater
install:
@echo -----------------------------------------------------------
./install.sh
@echo -----------------------------------------------------------
uninstall:
@echo -----------------------------------------------------------
./uninstall.sh
@echo -----------------------------------------------------------