added missing .cvsignore and updated makefile

svn path=/trunk/; revision=7330
This commit is contained in:
Thomas Bluemel 2003-12-30 14:28:48 +00:00
parent 837f9ed8a7
commit b8aa4bcd37
2 changed files with 29 additions and 8 deletions

6
reactos/apps/dist/notepad/.cvsignore vendored Normal file
View file

@ -0,0 +1,6 @@
*.o
*.d
*.exe
*.coff
*.sym
*.map

View file

@ -1,8 +1,23 @@
all:
gcc -c notepad.c -o notepad.o
windres -i notepad.rc -o res.o
gcc notepad.o res.o -o notepad.nostrip.exe -mwindows
strip notepad.nostrip.exe -o notepad.exe
clean:
del *.o
del *.exe
# $Id: makefile,v 1.3 2003/12/30 14:28:48 weiden Exp $
PATH_TO_TOP = ../../..
TARGET_NORC = no
TARGET_TYPE = program
TARGET_APPTYPE = windows
TARGET_NAME = notepad
TARGET_SDKLIBS = user32.a
TARGET_OBJECTS = $(TARGET_NAME).o
TARGET_CFLAGS = -Wall -Werror
include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk
# EOF