diff options
author | Timo Teras <timo.teras@iki.fi> | 2008-04-21 16:30:10 +0000 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2008-04-21 16:30:10 +0000 |
commit | 823283edca0d8403742999917a4ff0698ad641cb (patch) | |
tree | c023160837e616ca5ff5e85cc754cd3e17bd1d2e /src/Makefile | |
parent | 951602e551bc56b433f7c6d908998b6289890b09 (diff) | |
download | aports-823283edca0d8403742999917a4ff0698ad641cb.tar.bz2 aports-823283edca0d8403742999917a4ff0698ad641cb.tar.xz |
Argument parsing. Some other stuff too.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 0964012ab9..15eeb00e51 100644 --- a/src/Makefile +++ b/src/Makefile @@ -18,6 +18,7 @@ apk_OBJS = \ blob.o \ hash.o \ md5.o \ + create.o \ add.o \ del.o \ ver.o \ @@ -29,6 +30,7 @@ ALL_OBJS = $(apk_OBJS) all: $(TARGETS) apk: $(apk_OBJS) + $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) clean:: @rm -f $(TARGETS) $(ALL_OBJS) |