Skip to content

Commit

Permalink
Delete win32 directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
GuiQuanZ committed Feb 6, 2016
1 parent cf0ec79 commit 7a2155e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ libtcc.so.1.0: CFLAGS+=-fPIC
# windows utilities
tiny_impdef$(EXESUF): win32/tools/tiny_impdef.c
$(CC) -o $@ $< $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
tiny_libmaker$(EXESUF): win32/tools/tiny_libmaker.c
tiny_libmaker$(EXESUF): tools/tiny_libmaker.c
$(CC) -o $@ $< $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)

# TinyCC runtime libraries
Expand Down
2 changes: 1 addition & 1 deletion lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ $(DIR)/%.o : %.c
$(XCC) -c $< -o $@ $(XFLAGS)
$(DIR)/%.o : %.S
$(XCC) -c $< -o $@ $(XFLAGS)
$(DIR)/%$(EXESUF) : $(TOP)/win32/tools/%.c
$(DIR)/%$(EXESUF) : $(TOP)/tools/%.c
$(CC) -o $@ $< $(XFLAGS) $(LDFLAGS)

$(OBJ) $(XAR) : $(DIR)/exists
Expand Down
2 changes: 1 addition & 1 deletion win32/tools/tiny_libmaker.c → tools/tiny_libmaker.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../../elf.h"
#include "../elf.h"

#ifdef TCC_TARGET_X86_64
# define ELFCLASSW ELFCLASS64
Expand Down

0 comments on commit 7a2155e

Please sign in to comment.