mirror of
https://github.com/ZDoom/acc.git
synced 2024-11-24 21:01:47 +00:00
- removed obsolete build systems files
This commit is contained in:
parent
b40456a3be
commit
aa55fea3e1
4 changed files with 1 additions and 380 deletions
16
.gitignore
vendored
16
.gitignore
vendored
|
@ -1,15 +1 @@
|
||||||
/Debug
|
/build*
|
||||||
/Release
|
|
||||||
/acc.ncb
|
|
||||||
/acc.opt
|
|
||||||
/acc.plg
|
|
||||||
/acc.exe
|
|
||||||
/acc.sln
|
|
||||||
/acc.suo
|
|
||||||
/acc.vcproj
|
|
||||||
/acc.vcproj.Christoph-PC.Christoph.user
|
|
||||||
/l
|
|
||||||
/log
|
|
||||||
/t
|
|
||||||
/zdefs.acs.orig
|
|
||||||
/*.o
|
|
||||||
|
|
146
Makefile
146
Makefile
|
@ -1,146 +0,0 @@
|
||||||
# get the target for the compiler
|
|
||||||
target = $(strip $(shell $(CC) -dumpmachine))
|
|
||||||
|
|
||||||
# DOS and Windows executables should have the .exe extension.
|
|
||||||
# Other operating systems should be extension-less.
|
|
||||||
|
|
||||||
CC ?= gcc
|
|
||||||
|
|
||||||
ifeq ($(findstring mingw32,$(target)),mingw32)
|
|
||||||
EXENAME = acc.exe
|
|
||||||
else
|
|
||||||
ifeq ($(findstring djgpp,$(target)),djgpp)
|
|
||||||
EXENAME = acc.exe
|
|
||||||
else
|
|
||||||
EXENAME = acc
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
CFLAGS ?= -O2 -Wall -W
|
|
||||||
LDFLAGS ?= -s
|
|
||||||
VERNUM = 157
|
|
||||||
|
|
||||||
OBJS = \
|
|
||||||
acc.o \
|
|
||||||
error.o \
|
|
||||||
misc.o \
|
|
||||||
parse.o \
|
|
||||||
pcode.o \
|
|
||||||
strlist.o \
|
|
||||||
symbol.o \
|
|
||||||
token.o
|
|
||||||
|
|
||||||
SRCS = \
|
|
||||||
acc.c \
|
|
||||||
error.c \
|
|
||||||
misc.c \
|
|
||||||
parse.c \
|
|
||||||
pcode.c \
|
|
||||||
strlist.c \
|
|
||||||
symbol.c \
|
|
||||||
token.c \
|
|
||||||
common.h \
|
|
||||||
error.h \
|
|
||||||
misc.h \
|
|
||||||
parse.h \
|
|
||||||
pcode.h \
|
|
||||||
strlist.h \
|
|
||||||
symbol.h \
|
|
||||||
token.h \
|
|
||||||
Makefile \
|
|
||||||
acc.dsp \
|
|
||||||
acc.dsw
|
|
||||||
|
|
||||||
ACS = \
|
|
||||||
zcommon.acs \
|
|
||||||
zdefs.acs \
|
|
||||||
zspecial.acs \
|
|
||||||
zwvars.acs
|
|
||||||
|
|
||||||
$(EXENAME) : $(OBJS)
|
|
||||||
$(CC) $(OBJS) -o $(EXENAME) $(LDFLAGS)
|
|
||||||
|
|
||||||
acc.o: acc.c \
|
|
||||||
common.h \
|
|
||||||
error.h \
|
|
||||||
misc.h \
|
|
||||||
parse.h \
|
|
||||||
pcode.h \
|
|
||||||
strlist.h \
|
|
||||||
symbol.h \
|
|
||||||
token.h \
|
|
||||||
|
|
||||||
|
|
||||||
error.o: error.c \
|
|
||||||
common.h \
|
|
||||||
error.h \
|
|
||||||
misc.h \
|
|
||||||
token.h \
|
|
||||||
|
|
||||||
|
|
||||||
misc.o: misc.c \
|
|
||||||
common.h \
|
|
||||||
error.h \
|
|
||||||
misc.h \
|
|
||||||
|
|
||||||
|
|
||||||
parse.o: parse.c \
|
|
||||||
common.h \
|
|
||||||
error.h \
|
|
||||||
misc.h \
|
|
||||||
parse.h \
|
|
||||||
pcode.h \
|
|
||||||
strlist.h \
|
|
||||||
symbol.h \
|
|
||||||
token.h \
|
|
||||||
|
|
||||||
|
|
||||||
pcode.o: pcode.c \
|
|
||||||
common.h \
|
|
||||||
error.h \
|
|
||||||
misc.h \
|
|
||||||
pcode.h \
|
|
||||||
strlist.h \
|
|
||||||
|
|
||||||
|
|
||||||
strlist.o: strlist.c \
|
|
||||||
common.h \
|
|
||||||
error.h \
|
|
||||||
misc.h \
|
|
||||||
pcode.h \
|
|
||||||
strlist.h \
|
|
||||||
|
|
||||||
|
|
||||||
symbol.o: symbol.c \
|
|
||||||
common.h \
|
|
||||||
error.h \
|
|
||||||
misc.h \
|
|
||||||
pcode.h \
|
|
||||||
symbol.h \
|
|
||||||
parse.h \
|
|
||||||
|
|
||||||
|
|
||||||
token.o: token.c \
|
|
||||||
common.h \
|
|
||||||
error.h \
|
|
||||||
misc.h \
|
|
||||||
pcode.h \
|
|
||||||
symbol.h \
|
|
||||||
token.h \
|
|
||||||
parse.h \
|
|
||||||
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f $(OBJS) $(EXENAME)
|
|
||||||
|
|
||||||
# These targets can only be made with MinGW's make and not DJGPP's, because
|
|
||||||
# they use Win32 tools.
|
|
||||||
|
|
||||||
zipsrc: $(SRCS)
|
|
||||||
kzip /y acc$(VERNUM)-src.zip $(SRCS) "End User License ACC Source Code.doc"
|
|
||||||
|
|
||||||
zipbin: $(EXENAME) $(ACS)
|
|
||||||
kzip /y acc$(VERNUM).zip $(EXENAME) $(ACS)
|
|
||||||
|
|
||||||
zipwbin: Release/acc.exe $(ACS)
|
|
||||||
kzip /y acc$(VERNUM)win.zip Release/acc.exe $(ACS)
|
|
186
acc.dsp
186
acc.dsp
|
@ -1,186 +0,0 @@
|
||||||
# Microsoft Developer Studio Project File - Name="acc" - Package Owner=<4>
|
|
||||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
|
||||||
# ** DO NOT EDIT **
|
|
||||||
|
|
||||||
# TARGTYPE "Win32 (x86) Console Application" 0x0103
|
|
||||||
|
|
||||||
CFG=acc - Win32 Debug
|
|
||||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
|
||||||
!MESSAGE use the Export Makefile command and run
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "acc.mak".
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE You can specify a configuration when running NMAKE
|
|
||||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "acc.mak" CFG="acc - Win32 Debug"
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE Possible choices for configuration are:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE "acc - Win32 Release" (based on "Win32 (x86) Console Application")
|
|
||||||
!MESSAGE "acc - Win32 Debug" (based on "Win32 (x86) Console Application")
|
|
||||||
!MESSAGE
|
|
||||||
|
|
||||||
# Begin Project
|
|
||||||
# PROP AllowPerConfigDependencies 0
|
|
||||||
# PROP Scc_ProjName "Perforce Project"
|
|
||||||
# PROP Scc_LocalPath "."
|
|
||||||
CPP=cl.exe
|
|
||||||
RSC=rc.exe
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "acc - Win32 Release"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 0
|
|
||||||
# PROP BASE Output_Dir "Release"
|
|
||||||
# PROP BASE Intermediate_Dir "Release"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 0
|
|
||||||
# PROP Output_Dir "Release"
|
|
||||||
# PROP Intermediate_Dir "Release"
|
|
||||||
# PROP Ignore_Export_Lib 0
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
|
||||||
# ADD CPP /nologo /MD /W3 /GX /O1 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
|
||||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /opt:nowin98
|
|
||||||
# SUBTRACT LINK32 /pdb:none
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "acc - Win32 Debug"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 1
|
|
||||||
# PROP BASE Output_Dir "Debug"
|
|
||||||
# PROP BASE Intermediate_Dir "Debug"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 1
|
|
||||||
# PROP Output_Dir "Debug"
|
|
||||||
# PROP Intermediate_Dir "Debug"
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
|
||||||
# ADD CPP /nologo /W3 /Gm /GX- /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
|
||||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# Begin Target
|
|
||||||
|
|
||||||
# Name "acc - Win32 Release"
|
|
||||||
# Name "acc - Win32 Debug"
|
|
||||||
# Begin Group "Source Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Acc.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Error.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Misc.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Parse.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Pcode.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Strlist.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Symbol.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Token.c
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# Begin Group "Header Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Common.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Error.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Misc.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Parse.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Pcode.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Strlist.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Symbol.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Token.h
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# Begin Group "ACS Headers"
|
|
||||||
|
|
||||||
# PROP Default_Filter "acs"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\zcommon.acs
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\zdefs.acs
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\zspecial.acs
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\zwvars.acs
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# Begin Group "Resource Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
|
||||||
# End Group
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\Makefile
|
|
||||||
# End Source File
|
|
||||||
# End Target
|
|
||||||
# End Project
|
|
33
acc.dsw
33
acc.dsw
|
@ -1,33 +0,0 @@
|
||||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
|
||||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Project: "acc"=.\acc.dsp - Package Owner=<4>
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
begin source code control
|
|
||||||
Perforce Project
|
|
||||||
.
|
|
||||||
end source code control
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<4>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Global:
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<3>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
Loading…
Reference in a new issue