File: Makefile

package info (click to toggle)
sparsehash 2.0.3-2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,756 kB
  • sloc: cpp: 6,600; sh: 3,960; ansic: 1,317; makefile: 240
file content (9 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
example: example.o libchash.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^

.SUFFIXES: .c .o .h
.c.o:
	$(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<

example.o: example.c libchash.h
libchash.o: libchash.c libchash.h