diff options
author | John Hawthorn <john.hawthorn@gmail.com> | 2012-03-18 17:26:54 -0700 |
---|---|---|
committer | John Hawthorn <john.hawthorn@gmail.com> | 2012-03-18 17:26:54 -0700 |
commit | f3f8d7f3003d522007bcbeba55d200cccc691b58 (patch) | |
tree | 65b1efdb03969949dff2a9335a7e92d9803fc91d /Makefile | |
parent | 74a3fd2430abc1129ecb7663e2a4914336b26501 (diff) | |
parent | fe733cabf146c5321f2c9372ec4d006392238018 (diff) | |
download | mirror-meh-f3f8d7f3003d522007bcbeba55d200cccc691b58.tar.gz mirror-meh-f3f8d7f3003d522007bcbeba55d200cccc691b58.tar.bz2 mirror-meh-f3f8d7f3003d522007bcbeba55d200cccc691b58.zip |
Merge pull request #4 from rtandy/tests
make tests build again, again
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ meh: $(OBJFILES) test: $(TESTTARGET) ./$(TESTTARGET) -test/test: test/test.o $(filter-out src/main.o, $(OBJFILES)) +test/test: test/test.o $(filter-out src/main.o src/xlib.o, $(OBJFILES)) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) -include $(DEPFILES) |