Skip to content

Commit

Permalink
Added .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
zevv committed Jun 13, 2016
1 parent 1cf78a1 commit 66c38f5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
go
*.d
*.o
*.swp
*.swo
zforth
zforth.save
.zforth.hist
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ LDFLAGS += -lreadline -lm
$(BIN): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS)

%.o: %.c Makefile zforth.h
$(CC) $(CFLAGS) -MMD -c $<
%.o: %.c Makefile src/zforth.h
$(CC) $(CFLAGS) -MMD -c $< -o $@

clean:
rm -f $(BIN) $(OBJS) $(DEPS)
Expand Down

0 comments on commit 66c38f5

Please sign in to comment.