File: Makefile

package info (click to toggle)
awesome-extra 2020122801
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,328 kB
  • sloc: cpp: 112; sh: 84; makefile: 25; python: 11
file content (10 lines) | stat: -rw-r--r-- 304 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
LUA_INCLUDES=/usr/include/

lib/unicode/native.so: lib/unicode/native.o
	$(CXX) -o $@ -shared $^ $(shell pkg-config --libs icu-uc)

lib/unicode/native.o: lib/unicode/native.cc
	$(CXX) -o $@ -fPIC -c $^ -I$(LUA_INCLUDES) $(shell pkg-config --cflags icu-uc)

clean:
	rm -f lib/unicode/*.o lib/unicode/*.so