index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Judd Vinet <judd@archlinux.org> | 2005-10-17 18:52:43 +0000 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2005-10-17 18:52:43 +0000 |
commit | a1526a3e7dda31e236985ab465a5befa298eef26 (patch) | |
tree | 4087d7f60d49651ab9c4a2fa876be11935ac1bbd /lib/libalpm/Makefile | |
parent | 8f191f3b332823906608453aac788b6ebc870e91 (diff) |
-rw-r--r-- | lib/libalpm/Makefile | 40 |
diff --git a/lib/libalpm/Makefile b/lib/libalpm/Makefile deleted file mode 100644 index 1f021776..00000000 --- a/lib/libalpm/Makefile +++ /dev/null @@ -1,40 +0,0 @@ - -CXX=gcc -CFLAGS=-g -Wall -pedantic -D_GNU_SOURCE -I. -I../.. -AR=ar rc -RAN=ranlib - -OBJS=md5driver.o \ - md5.o \ - util.o \ - list.o \ - log.o \ - error.o \ - package.o \ - group.o \ - db.o \ - cache.o \ - conflict.o \ - deps.o \ - provide.o \ - rpmvercmp.o \ - backup.o \ - trans.o \ - add.o \ - remove.o \ - sync.o \ - handle.o \ - alpm.o - -all: libalpm.a - -%.o: %.c %.h - $(CXX) -c $(CFLAGS) -o $@ $< - -libalpm.a: $(OBJS) alpm.h - $(AR) $@ $(OBJS) - $(RAN) $@ - -clean: - rm -f *.o *~ core - rm -f libalpm.a |