File: Makefile

package info (click to toggle)
amoeba 1.1-26
  • links: PTS
  • area: contrib
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 1,256 kB
  • ctags: 1,561
  • sloc: cpp: 8,315; makefile: 173
file content (7 lines) | stat: -rw-r--r-- 243 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
IMAGE_OBJS=image/jpeg_image.o image/png_image.o image/load_image.o image/image.o image/imagecombiner.o
OBJS += $(IMAGE_OBJS)
SUBLIBS += image/image.a

image/image.a: $(IMAGE_OBJS)
	$(AR) rc image/image.a $(IMAGE_OBJS)
	$(RANLIB) image/image.a